* src/DateHandler.py: Fix typo caught in gramps20 branch.

svn: r4793
This commit is contained in:
Alex Roitman 2005-06-05 17:26:30 +00:00
parent 719319baac
commit d4a8f824ac
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2005-06-05 Alex Roitman <shura@gramps-project.org>
* src/DateHandler.py: Fix typo caught in gramps20 branch.
2005-06-05 Julio Sanchez <jsanchez@users.sourceforge.net>
* src/po/es.po: version merge fix

View File

@ -118,9 +118,9 @@ load_plugins(datesDir)
try:
if _lang_to_parser.has_key(_lang):
parser = _lang_to_parser[_lang]
parser = _lang_to_parser[_lang]()
else:
parser = _lang_to_parser[_lang_short]
parser = _lang_to_parser[_lang_short]()
except:
print "Date parser for",_lang,"not available, using default"
parser = _lang_to_parser["C"]()