From 404c2f154b0a9f672fef17660d33c508319db81d Mon Sep 17 00:00:00 2001 From: Tim G L Lyons Date: Mon, 4 Feb 2013 18:12:09 +0000 Subject: [PATCH] date.get_start_date has no attribute 'is_valid' svn: r21292 --- gramps/gen/utils/alive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/utils/alive.py b/gramps/gen/utils/alive.py index 882aab61d..9151bddb7 100644 --- a/gramps/gen/utils/alive.py +++ b/gramps/gen/utils/alive.py @@ -121,7 +121,7 @@ class ProbablyAlive(object): ev = self.db.get_event_from_handle(ev_ref.ref) if ev and ev.type.is_death_fallback(): death_date = ev.get_date_object() - if death_date.get_start_date().is_valid(): + if death_date.is_valid(): explain = _("death-related evidence") else: death_date = Today() # before today