1
0
mirror of https://github.com/lineageos4microg/docker-lineage-cicd synced 2024-11-09 10:09:56 +01:00

Update build_manifest.py to get rid of python2->3 related error

This commit is contained in:
Pete Fotheringham 2021-02-17 07:03:39 +00:00
parent f012e2084b
commit 17d572cff6

@ -58,4 +58,4 @@ if __name__ == "__main__":
xmlstr = minidom.parseString(ET.tostring(xmlout)).toprettyxml(indent=" ", encoding="UTF-8")
with open(args.out, "w") as f:
f.write(xmlstr)
f.write(xmlstr.decode('utf-8'))