2006-06-22 Alex Roitman <shura@gramps-project.org>

* src/GrampsDb/_WriteGedcom.py (GedcomWriter.__init__): Typo.



svn: r6946
This commit is contained in:
Alex Roitman 2006-06-22 18:32:16 +00:00
parent 73b4bd93fd
commit b3a8324b78
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2006-06-22 Alex Roitman <shura@gramps-project.org>
* src/GrampsDb/_WriteGedcom.py (GedcomWriter.__init__): Typo.
2006-06-21 Don Allingham <don@gramps-project.org>
* src/Editors/_EditFamily.py: Don't attempt to be too clever and
swap families if a duplicate is found. Just warn, and continue.

View File

@ -425,7 +425,7 @@ class GedcomWriter(UpdateCallback):
if self.private and person.private:
self.plist.remove(handle)
for family_handle in person.get_family_handle_list():
family = self.db.get_person_from_handle(family_handle)
family = self.db.get_family_from_handle(family_handle)
if self.private and family.private:
continue
self.flist.add(family_handle)