* 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:
@ -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
|
||||
|
Reference in New Issue
Block a user