diff --git a/ChangeLog b/ChangeLog index 0ace4be0f..698bb920a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -35,6 +35,7 @@ * src/GrampsParser.py (GrampsParser.stop_scallno): Remove function. * src/gramps.glade (sourceEditor): Remove Call Number widgets. * src/EditSource.py: Remove Call Number support. + * src/plugins/WriteGedcom.py (write_sources): Remove CallNumber export. 2003-12-07 Alex Roitman * src/filters/Complete.py: Add filter matching people with the diff --git a/src/plugins/WriteGedcom.py b/src/plugins/WriteGedcom.py index ab48abf16..b0b7e0842 100644 --- a/src/plugins/WriteGedcom.py +++ b/src/plugins/WriteGedcom.py @@ -777,8 +777,6 @@ class GedcomWriter: self.writeln("1 PUBL %s" % self.cnvtxt(source.getPubInfo())) if source.getAbbrev(): self.writeln("1 ABBR %s" % self.cnvtxt(source.getAbbrev())) - if source.getCallNumber(): - self.writeln("1 CALN %s" % self.cnvtxt(source.getCallNumber())) if source.getNote(): self.write_long_text("NOTE",1,self.cnvtxt(source.getNote())) index = index + 1