From 2523c7abf874fa4394e4c92583212c3bf5ab74fc Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Wed, 25 Aug 2004 07:53:44 +0000 Subject: [PATCH] 2004-08-25 Tim Waugh * src/RelLib.py (Person.parents_too_old): Fixed typo. svn: r3510 --- gramps2/ChangeLog | 3 +++ gramps2/src/RelLib.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index d3090e8c2..41e3c6498 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2004-08-25 Tim Waugh + * src/RelLib.py (Person.parents_too_old): Fixed typo. + 2004-08-24 Don Allingham * src/ReadXML.py: Fix file copy problem, handle copy failure * src/ImageSelect.py: Display GRAMPS ID, not DB handle diff --git a/gramps2/src/RelLib.py b/gramps2/src/RelLib.py index 3e1c2ad89..3e070f3d0 100644 --- a/gramps2/src/RelLib.py +++ b/gramps2/src/RelLib.py @@ -639,7 +639,7 @@ class Person(PrimaryObject,SourceNote): if sp_death_handle: spouse_death = db.get_event_from_handle(sp_death_handle) if spouse_death.get_date() != "": - d = SingleDate (spouse_birth.get_date_object().get_start_date()) + d = SingleDate (spouse_death.get_date_object().get_start_date()) d.set_year (d.get_year() - min_generation) if not not_too_old (d): return False