Spec file update, GEDCOM note work around for FTM bug

svn: r942
This commit is contained in:
Don Allingham
2002-04-24 12:59:15 +00:00
parent 4fd0aa9690
commit bf30f9933b
5 changed files with 11 additions and 4 deletions

View File

@@ -397,9 +397,9 @@ class GedcomParser:
self.nmap[matches[1]] = noteobj
text = matches[2][4:]
if text == "":
noteobj.set(self.parse_note_continue(1))
noteobj.append(self.parse_note_continue(1))
else:
noteobj.set(text + self.parse_note_continue(1))
noteobj.append(text + self.parse_note_continue(1))
self.parse_note_data(1)
elif matches[2] == "OBJE":
self.ignore_sub_junk(1)