diff options
Diffstat (limited to 'scripts/manifest.py')
-rwxr-xr-x | scripts/manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/manifest.py b/scripts/manifest.py index 04f7405df..81f9c61a8 100755 --- a/scripts/manifest.py +++ b/scripts/manifest.py @@ -123,4 +123,4 @@ def get_indent(element, default_level): def write_xml(f, doc): f.write('<?xml version="1.0" encoding="utf-8"?>\n') for node in doc.childNodes: - f.write(node.toxml(encoding='utf-8') + '\n') + f.write(node.toxml() + '\n') |