better variable name
svn: r4320
This commit is contained in:
parent
690bcd9e68
commit
155b48275a
@ -226,8 +226,8 @@ class Extract:
|
|||||||
|
|
||||||
def get_person_age(self, person):
|
def get_person_age(self, person):
|
||||||
"return age for given person, if alive"
|
"return age for given person, if alive"
|
||||||
death = person.get_death_handle()
|
death_handle = person.get_death_handle()
|
||||||
if not death:
|
if not death_handle:
|
||||||
return [self.estimate_age(person)]
|
return [self.estimate_age(person)]
|
||||||
return [_("Already dead")]
|
return [_("Already dead")]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user