better variable name

svn: r4320
This commit is contained in:
Eero Tamminen 2005-04-07 20:06:39 +00:00
parent 690bcd9e68
commit 155b48275a

View File

@ -226,8 +226,8 @@ class Extract:
def get_person_age(self, person):
"return age for given person, if alive"
death = person.get_death_handle()
if not death:
death_handle = person.get_death_handle()
if not death_handle:
return [self.estimate_age(person)]
return [_("Already dead")]