From b3a8324b781d04a1cdcc3384e5785a30053bf1b8 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 22 Jun 2006 18:32:16 +0000 Subject: [PATCH] 2006-06-22 Alex Roitman * src/GrampsDb/_WriteGedcom.py (GedcomWriter.__init__): Typo. svn: r6946 --- ChangeLog | 3 +++ src/GrampsDb/_WriteGedcom.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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)