diff --git a/ChangeLog b/ChangeLog index 28dda8afc..fec83bf97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2006-06-22 Alex Roitman + * src/GrampsDb/_WriteGedcom.py (GedcomWriter.__init__): Typo. + 2006-06-21 Don Allingham * src/Editors/_EditFamily.py: Don't attempt to be too clever and swap families if a duplicate is found. Just warn, and continue. diff --git a/src/GrampsDb/_WriteGedcom.py b/src/GrampsDb/_WriteGedcom.py index ace726d10..1a62cc5f6 100644 --- a/src/GrampsDb/_WriteGedcom.py +++ b/src/GrampsDb/_WriteGedcom.py @@ -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)