* src/Date.py: fix get_month_valid call

* src/DateDisplay.py: pychecker fixes
* src/EditPerson.py: pychecker fixes
* src/GrampDbBase.py: pychecker fixes
* src/Marriage.py: bring up to date with the DateParser
* src/PeopleView.py: pychecker fixes
* src/RelLib.py: pychecker fixes


svn: r3594
This commit is contained in:
Don Allingham
2004-10-03 21:04:54 +00:00
parent 690a7e126a
commit 825828690e
8 changed files with 52 additions and 52 deletions

View File

@ -478,5 +478,5 @@ class Date:
date, and having year, month, and day all non-zero.
"""
return self.modifier == MOD_NONE and self.quality == QUAL_NONE\
and self.get_year_valid() and self.get_month_valid\
and self.get_year_valid() and self.get_month_valid()\
and self.get_day_valid()