abouttreesummaryrefslogcommitdiff
path: root/sync_translations.py
diff options
context:
space:
mode:
Diffstat (limited to 'sync_translations.py')
-rw-r--r--sync_translations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync_translations.py b/sync_translations.py
index d3669e0..cc717aa 100644
--- a/sync_translations.py
+++ b/sync_translations.py
@@ -39,7 +39,7 @@ def parse_strings_file(file):
def write_updated_strings(out, strings):
out.write('<?xml version="1.0" encoding="utf-8"?>\n<resources>\n')
for key, string, comment in strings:
- out.write(" ")
+ out.write(" ")
if comment: out.write("<!-- ")
out.write(ET.tostring(string, "unicode").strip())
if comment: out.write(" -->")