Fixed date range error
svn: r43
This commit is contained in:
parent
22841c3f41
commit
84cf231fc5
@ -171,7 +171,7 @@ def probably_alive(person):
|
|||||||
if death.getDate() != "":
|
if death.getDate() != "":
|
||||||
return 0
|
return 0
|
||||||
if birth.getDate() != "":
|
if birth.getDate() != "":
|
||||||
year = birth.getDateObj().getYear()
|
year = birth.getDateObj().get_start_date().getYear()
|
||||||
time_struct = time.localtime(time.time())
|
time_struct = time.localtime(time.time())
|
||||||
current_year = time_struct[0]
|
current_year = time_struct[0]
|
||||||
if year != -1 and current_year - year > 110:
|
if year != -1 and current_year - year > 110:
|
||||||
|
Loading…
Reference in New Issue
Block a user