From 02a8bd3c3df5804df3d9a686225a2d5485881988 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 --- src/plugins/HtmlReport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/HtmlReport.py b/src/plugins/HtmlReport.py index aef66351d..dd97525f9 100644 --- a/src/plugins/HtmlReport.py +++ b/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: