From 84cf231fc549ca20001987bc5bdae85b0fd39f93 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Mon, 21 May 2001 00:56:49 +0000 Subject: [PATCH] Fixed date range error svn: r43 --- gramps/src/plugins/HtmlReport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/src/plugins/HtmlReport.py b/gramps/src/plugins/HtmlReport.py index aef66351d..dd97525f9 100644 --- a/gramps/src/plugins/HtmlReport.py +++ b/gramps/src/plugins/HtmlReport.py @@ -171,7 +171,7 @@ def probably_alive(person): if death.getDate() != "": return 0 if birth.getDate() != "": - year = birth.getDateObj().getYear() + year = birth.getDateObj().get_start_date().getYear() time_struct = time.localtime(time.time()) current_year = time_struct[0] if year != -1 and current_year - year > 110: