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:
parent
807ce4e496
commit
a3545c0cba
@ -1,5 +1,6 @@
|
|||||||
2003-07-07 Tim Waugh <twaugh@redhat.com>
|
2003-07-07 Tim Waugh <twaugh@redhat.com>
|
||||||
* src/plugins/WriteGedcom.py: Fix GEDCOM export.
|
* src/plugins/WriteGedcom.py: Fix GEDCOM export. Fixed date
|
||||||
|
construction logic to handle datestrs.
|
||||||
|
|
||||||
2003-07-06 Don Allingham <dallingham@users.sourceforge.net>
|
2003-07-06 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* gramps.sh.in: Don't override an existing PYTHONPATH environment
|
* gramps.sh.in: Don't override an existing PYTHONPATH environment
|
||||||
|
@ -1017,11 +1017,10 @@ class GedcomWriter:
|
|||||||
|
|
||||||
def print_date(self,prefix,date):
|
def print_date(self,prefix,date):
|
||||||
start = date.get_start_date()
|
start = date.get_start_date()
|
||||||
if date.isEmpty():
|
|
||||||
val = date.getText()
|
val = date.getText()
|
||||||
if val:
|
if val:
|
||||||
self.writeln("%s %s" % (prefix,self.cnvtxt(val)))
|
self.writeln("%s %s" % (prefix,self.cnvtxt(val)))
|
||||||
else:
|
elif not date.isEmpty ():
|
||||||
if date.isRange():
|
if date.isRange():
|
||||||
val = "FROM %s TO %s" % (make_date(start),
|
val = "FROM %s TO %s" % (make_date(start),
|
||||||
make_date(date.get_stop_date()))
|
make_date(date.get_stop_date()))
|
||||||
|
Loading…
Reference in New Issue
Block a user