* src/DateHandler/_DateParser.py: Fix a typo

* src/DateEdit.py: Fix a typo

svn: r8354
This commit is contained in:
Brian Matherly 2007-04-05 11:51:24 +00:00
parent 60e09c86eb
commit e9bd32330f
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-04-05 Brian Matherly <brian@gramps-project.org>
* src/DateHandler/_DateParser.py: Fix a typo
* src/DateEdit.py: Fix a typo
2007-04-04 Brian Matherly <brian@gramps-project.org> 2007-04-04 Brian Matherly <brian@gramps-project.org>
* src/plugins/Checkpoint.py: 0000993: Checkpoint tool crashes in Windows * src/plugins/Checkpoint.py: 0000993: Checkpoint tool crashes in Windows

View File

@ -1,4 +1,4 @@
s# #
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2002-2006 Donald N. Allingham # Copyright (C) 2002-2006 Donald N. Allingham

View File

@ -313,7 +313,7 @@ class DateParser:
self.french_to_int) self.french_to_int)
def _parse_greg_julian(self, text): def _parse_greg_julian(self, text):
return self._parse_calendar(text, self._text,s elf._text2, return self._parse_calendar(text, self._text,self._text2,
self.month_to_int, gregorian_valid) self.month_to_int, gregorian_valid)
def _parse_calendar(self, text, regex1, regex2, mmap, check=None): def _parse_calendar(self, text, regex1, regex2, mmap, check=None):