2006-08-22 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_WriteGedcom.py: apply event type string conversion fix to family types svn: r7242
This commit is contained in:
parent
2cda62c603
commit
eba0cad3ab
@ -1,3 +1,7 @@
|
|||||||
|
2006-08-22 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/GrampsDb/_WriteGedcom.py: apply event type string conversion
|
||||||
|
fix to family types
|
||||||
|
|
||||||
2006-08-22 Brian Matherly <brian@gramps-project.org>
|
2006-08-22 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/NarrativeWeb.py: show url when no description (#0000319)
|
* src/plugins/NarrativeWeb.py: show url when no description (#0000319)
|
||||||
|
|
||||||
|
@ -669,7 +669,7 @@ class GedcomWriter(UpdateCallback):
|
|||||||
self.writeln("2 TYPE %s" % event.get_description())
|
self.writeln("2 TYPE %s" % event.get_description())
|
||||||
else:
|
else:
|
||||||
self.writeln("1 EVEN")
|
self.writeln("1 EVEN")
|
||||||
the_type = str(etype).strip()
|
the_type = str(event.get_type())
|
||||||
if the_type:
|
if the_type:
|
||||||
self.writeln("2 TYPE %s" % self.cnvtxt(the_type))
|
self.writeln("2 TYPE %s" % self.cnvtxt(the_type))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user