diff --git a/ChangeLog b/ChangeLog index 45502ca8a..172227751 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ 2006-09-12 Alex Roitman + * src/DateHandler/_Date_fr.py (DateParserFR.init_strings): Typo. * src/const.py.in (app_gramps): Revert to using a string. 2006-09-11 Don Allingham diff --git a/src/DateHandler/_Date_fr.py b/src/DateHandler/_Date_fr.py index 263aa5f6f..37824317a 100644 --- a/src/DateHandler/_Date_fr.py +++ b/src/DateHandler/_Date_fr.py @@ -136,7 +136,7 @@ class DateParserFR(DateParser): # This self._numeric is different from the base # by allowing space after the slash/dot self._numeric = re.compile("((\d+)[/\. ])?\s*((\d+)[/\.])?\s*(\d+)\s*$") - self._span = re.compile(u"(de)\s+(?P.+)\s+(à)\s+(?P.+)",re.IGNORECASE) + self._span = re.compile(u"(de)\s+(?P.+)\s+(à)\s+(?P.+)",re.IGNORECASE) self._range = re.compile(u"(entre|ent\.|ent)\s+(?P.+)\s+(et)\s+(?P.+)",re.IGNORECASE) self._text2 =re.compile('(\d+)?.?\s+?%s\s*((\d+)(/\d+)?)?' % self._mon_str, re.IGNORECASE)