* src/GrampsDbUtils/_WriteGedcom.py: pylint cleanup
* src/GrampsDbUtils/_GedcomParse.py: fix child references * src/ArgHandler.py: fix calling sequence for gedcom 2007-09-05 Don Allingham <don@gramps-project.org> svn: r8931
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2007-09-05 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/GrampsDbUtils/_WriteGedcom.py: pylint cleanup
|
||||||
|
* src/GrampsDbUtils/_GedcomParse.py: fix child references
|
||||||
|
* src/ArgHandler.py: fix calling sequence for gedcom
|
||||||
|
|
||||||
2007-09-05 Don Allingham <don@gramps-project.org>
|
2007-09-05 Don Allingham <don@gramps-project.org>
|
||||||
* src/GrampsDbUtils/_WriteXML.py: fix typo
|
* src/GrampsDbUtils/_WriteXML.py: fix typo
|
||||||
|
|
||||||
|
@@ -572,7 +572,7 @@ class ArgHandler:
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
elif format == 'gedcom':
|
elif format == 'gedcom':
|
||||||
try:
|
try:
|
||||||
gw = GrampsDbUtils.GedcomWriter(self.state.db,None,1,filename)
|
gw = GrampsDbUtils.GedcomWriter(self.state.db, None, 1)
|
||||||
ret = gw.export_data(filename)
|
ret = gw.export_data(filename)
|
||||||
except:
|
except:
|
||||||
print "Error exporting %s" % filename
|
print "Error exporting %s" % filename
|
||||||
|
@@ -2303,6 +2303,7 @@ class GedcomParser(UpdateCallback):
|
|||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
ref = RelLib.ChildRef()
|
ref = RelLib.ChildRef()
|
||||||
|
ref.ref = state.person.handle
|
||||||
if sub_state.ftype:
|
if sub_state.ftype:
|
||||||
ref.set_mother_relation(sub_state.ftype)
|
ref.set_mother_relation(sub_state.ftype)
|
||||||
ref.set_father_relation(sub_state.ftype)
|
ref.set_father_relation(sub_state.ftype)
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user