Fixed typo
svn: r4471
This commit is contained in:
parent
3346233bf0
commit
06ca7b40fd
@ -1,3 +1,6 @@
|
|||||||
|
2005-05-03 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/ReportUtils.py: fixed type (get-day() -> get_day())
|
||||||
|
|
||||||
2005-05-02 Don Allingham <don@gramps-project.org>
|
2005-05-02 Don Allingham <don@gramps-project.org>
|
||||||
* src/gramps.glade: remove place field, fixed parent relationships
|
* src/gramps.glade: remove place field, fixed parent relationships
|
||||||
* src/ImageSelect.py: remove place handling
|
* src/ImageSelect.py: remove place handling
|
||||||
@ -25,7 +28,7 @@
|
|||||||
|
|
||||||
* src/po/ru.po: Translation update.
|
* src/po/ru.po: Translation update.
|
||||||
|
|
||||||
2005-05-02 <dona@gramps-project.org>
|
2005-05-02 Don Allingham <dona@gramps-project.org>
|
||||||
* src/GrampsBSDDB.py: handle missing version number properly, detect
|
* src/GrampsBSDDB.py: handle missing version number properly, detect
|
||||||
empty database properly.
|
empty database properly.
|
||||||
* src/ReadGedcom.py: set default gedcom parser class to "GEDCOM 5.5"
|
* src/ReadGedcom.py: set default gedcom parser class to "GEDCOM 5.5"
|
||||||
|
@ -1796,6 +1796,6 @@ def old_calc_age(database,person):
|
|||||||
age = age - 1
|
age = age - 1
|
||||||
units = 2 # month
|
units = 2 # month
|
||||||
if age == 0:
|
if age == 0:
|
||||||
age = death.get-day() + 31 - birth.get_day() # calc age in days
|
age = death.get_day() + 31 - birth.get_day() # calc age in days
|
||||||
units = 3 # day
|
units = 3 # day
|
||||||
return (age,units)
|
return (age,units)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user