mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-14 19:21:47 +08:00
Merge branch 'master' of github.com:Ultimaker/Cura
This commit is contained in:
commit
fcefda9eaf
@ -134,6 +134,10 @@ class XmlMaterialProfile(UM.Settings.InstanceContainer):
|
|||||||
|
|
||||||
for key, value in metadata.items():
|
for key, value in metadata.items():
|
||||||
builder.start(key)
|
builder.start(key)
|
||||||
|
# Normally value is a string.
|
||||||
|
# Nones get handled well.
|
||||||
|
if isinstance(value, bool):
|
||||||
|
value = str(value) # parseBool in deserialize expects 'True'.
|
||||||
builder.data(value)
|
builder.data(value)
|
||||||
builder.end(key)
|
builder.end(key)
|
||||||
|
|
||||||
@ -226,7 +230,7 @@ class XmlMaterialProfile(UM.Settings.InstanceContainer):
|
|||||||
_indent(root)
|
_indent(root)
|
||||||
stream = io.StringIO()
|
stream = io.StringIO()
|
||||||
tree = ET.ElementTree(root)
|
tree = ET.ElementTree(root)
|
||||||
tree.write(stream, "unicode", True)
|
tree.write(stream, encoding="unicode", xml_declaration=True)
|
||||||
|
|
||||||
return stream.getvalue()
|
return stream.getvalue()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user