* 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

@ -34,9 +34,11 @@ from RelLib import *
import cPickle
import time
import locale
import re
from gettext import gettext as _
import GrampsGconfKeys
import Utils
#-------------------------------------------------------------------------
#
@ -44,7 +46,7 @@ import GrampsGconfKeys
#
#-------------------------------------------------------------------------
_UNDO_SIZE = 1000
_id_reg = compile("%\d+d")
_id_reg = re.compile("%\d+d")
PERSON_KEY = 0
FAMILY_KEY = 1