From c1c6e32085685e97cab055613eb4d84f3e5d9e47 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 7 Mar 2007 05:25:33 +0000 Subject: [PATCH] * src/GrampsDbUtils/_GedcomParse.py (GedcomParser.__parse_record): fix note handling svn: r8281 --- ChangeLog | 1 + src/GrampsDbUtils/_GedcomParse.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 802f9b101..f8dbc94e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ Fix 0000956: Event order within GRAMPS not replicated in web report 2007-03-06 Don Allingham + * src/GrampsDbUtils/_GedcomParse.py (GedcomParser.__parse_record): fix note handling * src/Editors/_EditFamily.py (EditFamily.save): disable data changed warning when saving the data - we know that it changed. diff --git a/src/GrampsDbUtils/_GedcomParse.py b/src/GrampsDbUtils/_GedcomParse.py index 67672c7aa..264c9f0e0 100644 --- a/src/GrampsDbUtils/_GedcomParse.py +++ b/src/GrampsDbUtils/_GedcomParse.py @@ -1253,7 +1253,7 @@ class GedcomParser(UpdateCallback): self.dbase.commit_source(source, self.trans) elif key[0:4] == "NOTE": try: - line.data = line.data[6:] + line.data = line.data[5:] except: pass self.__parse_inline_note(line, 1)