0001011: XML import loses media objects when media object has no title.

svn: r8379
This commit is contained in:
Brian Matherly 2007-04-12 11:46:36 +00:00
parent 3cade5e550
commit 004df1cef8
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-12 Brian Matherly <brian@gramps-project.org>
* src/GrampsDb/_ReadXML.py: 0001011: XML import loses media objects when
media object has no title
2007-04-11 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_WriteGedcom.py (GedcomWriter.write_source_ref): replace
newlines with semicolons on output.

View File

@ -1005,7 +1005,10 @@ class GrampsParser(UpdateCallback):
def start_file(self,attrs):
self.object.mime = attrs['mime']
self.object.desc = attrs['description']
if attrs.has_key('description'):
self.object.desc = attrs['description']
else:
self.object.desc = ""
drive,src = os.path.splitdrive(attrs["src"])
if src:
if not drive and not os.path.isabs(src):