diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index ab3e47a33..d511846ff 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,7 @@ +2003-07-25 Tim Waugh + * src/plugins/ReadGedcom.py: Handle ABBR in source definitions (i.e. + handle the GEDCOM that our exporter writes). + 2003-07-24 Tim Waugh * src/GenericFilter.py: Several more filters which iterate over other filters. diff --git a/gramps2/src/plugins/ReadGedcom.py b/gramps2/src/plugins/ReadGedcom.py index f454d1de4..0684f60eb 100644 --- a/gramps2/src/plugins/ReadGedcom.py +++ b/gramps2/src/plugins/ReadGedcom.py @@ -470,6 +470,8 @@ class GedcomParser: title = matches[2] + d title = string.replace(title,'\n',' ') self.source.setTitle(title) + elif matches[1] == "ABBR": + pass else: if note: note = "%s\n%s %s" % (note,matches[1],matches[2])