From 5cbfb777a7de4f58005fbd4e3643ed5a053bde36 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 13 May 2004 22:42:42 +0000 Subject: [PATCH] * src/SubstKeywords.py (__init__): Typo. svn: r3165 --- gramps2/ChangeLog | 1 + gramps2/src/SubstKeywords.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 9d6d76bbb..991d5565e 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,6 +1,7 @@ 2004-05-13 Alex Roitman * src/RelLib.py (probably_alive): Typos. * src/Plugins.py: Do not pass parent to the reports. + * src/SubstKeywords.py (__init__): Typo. 2004-05-12 Alex Roitman * src/plugins/ChangeTypes.py: Remove Utils.modified() call. diff --git a/gramps2/src/SubstKeywords.py b/gramps2/src/SubstKeywords.py index ec6218b86..f87dbfb3d 100644 --- a/gramps2/src/SubstKeywords.py +++ b/gramps2/src/SubstKeywords.py @@ -100,7 +100,7 @@ class SubstKeywords: f_id = person.get_family_id_list()[0] f = database.find_family_from_id(f_id) father_id = f.get_father_id() - mother_id = f.get_mother_id + mother_id = f.get_mother_id() if father_id == person_id: if mother_id: mother = database.find_person_from_id(mother_id)