Undo change that made a superfluous change (extra space) to XML format

This commit is contained in:
Doug Blank 2013-11-09 19:08:09 -05:00
parent abfc1dd698
commit d5be60846d

View File

@ -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<file src="%s" mime="%s" %s%s/>\n'
self.g.write('%s<file src="%s" mime="%s"%s%s/>\n'
% (" "*(index+1), self.fix(path), self.fix(mime_type),
checksum_text, desc_text))
self.write_attribute_list(obj.get_attribute_list())