From ae8f0a3515d897bfa03b988889b0c2103b44bdbb Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Tue, 9 Dec 2003 04:24:52 +0000 Subject: [PATCH] * src/plugins/WriteGedcom.py (write_sources): Remove CallNumber export. svn: r2476 --- gramps2/ChangeLog | 1 + gramps2/src/plugins/WriteGedcom.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 0ace4be0f..698bb920a 100644 --- a/gramps2/ChangeLog +++ b/gramps2/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/gramps2/src/plugins/WriteGedcom.py b/gramps2/src/plugins/WriteGedcom.py index ab48abf16..b0b7e0842 100644 --- a/gramps2/src/plugins/WriteGedcom.py +++ b/gramps2/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