From d5be60846d83d7e79ff21d2d61eba92fc0663c46 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sat, 9 Nov 2013 19:08:09 -0500 Subject: [PATCH] Undo change that made a superfluous change (extra space) to XML format --- gramps/plugins/export/exportxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/export/exportxml.py b/gramps/plugins/export/exportxml.py index da1061d48..aabc6d28c 100644 --- a/gramps/plugins/export/exportxml.py +++ b/gramps/plugins/export/exportxml.py @@ -1246,7 +1246,7 @@ class GrampsXmlWriter(UpdateCallback): # Always export path with \ replaced with /. Otherwise import # from Windows to Linux of gpkg's path to images does not work. path = path.replace('\\','/') - self.g.write('%s\n' + self.g.write('%s\n' % (" "*(index+1), self.fix(path), self.fix(mime_type), checksum_text, desc_text)) self.write_attribute_list(obj.get_attribute_list())