From 6ca692e33ae85645f8f6904fd20de32093b0cc40 Mon Sep 17 00:00:00 2001 From: Tim G L Lyons Date: Tue, 5 Feb 2013 12:17:59 +0000 Subject: [PATCH] 0006397: Navweb crashes alpha4. date.get_start_date has no attribute 'is_valid' svn: r21300 --- 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 801cf22d3..b8ece8ca3 100644 --- a/gramps/gen/utils/alive.py +++ b/gramps/gen/utils/alive.py @@ -120,7 +120,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