From 88d9b23ac8eda1196c3ec4fcfa42d080633fc711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Fri, 23 Mar 2012 16:13:40 +0000 Subject: [PATCH] 5081: check and use unfiltered persons on private __is_living (by MD Nauta) svn: r19124 --- src/gen/proxy/living.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gen/proxy/living.py b/src/gen/proxy/living.py index e4ee257d8..b52e11a97 100644 --- a/src/gen/proxy/living.py +++ b/src/gen/proxy/living.py @@ -204,7 +204,9 @@ class LivingProxyDb(ProxyDbBase): Returns True if the person is considered living. Returns False if the person is not considered living. """ - return probably_alive( person, + person_handle = person.get_handle() + unfil_person = self.get_unfiltered_person(person_handle) + return probably_alive( unfil_person, self.db, self.current_date, self.years_after_death )