From 794b331a82ca902caa65a0d72fe18807e6588f5f Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Fri, 25 Jul 2003 10:45:24 +0000 Subject: [PATCH] 2003-07-25 Tim Waugh * src/plugins/ReadGedcom.py: Handle ABBR in source definitions (i.e. handle the GEDCOM that our exporter writes). svn: r1929 --- gramps2/ChangeLog | 4 ++++ gramps2/src/plugins/ReadGedcom.py | 2 ++ 2 files changed, 6 insertions(+) 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])