2003-07-07 Tim Waugh <twaugh@redhat.com>

* src/plugins/WriteGedcom.py: Fix GEDCOM export.  Fixed date
        construction logic to handle datestrs.


svn: r1835
This commit is contained in:
Tim Waugh
2003-07-07 10:57:11 +00:00
parent 807ce4e496
commit a3545c0cba
2 changed files with 6 additions and 6 deletions

View File

@@ -1017,11 +1017,10 @@ class GedcomWriter:
def print_date(self,prefix,date):
start = date.get_start_date()
if date.isEmpty():
val = date.getText()
if val:
self.writeln("%s %s" % (prefix,self.cnvtxt(val)))
else:
val = date.getText()
if val:
self.writeln("%s %s" % (prefix,self.cnvtxt(val)))
elif not date.isEmpty ():
if date.isRange():
val = "FROM %s TO %s" % (make_date(start),
make_date(date.get_stop_date()))