* src/DateHandler.py: Don't force English parser if problem with

config value, but LANG is set properly


svn: r3863
This commit is contained in:
Don Allingham
2005-01-03 19:43:22 +00:00
parent acb97d5c56
commit 5ed9b8db51
3 changed files with 8 additions and 13 deletions

View File

@ -37,7 +37,6 @@ import locale
# GRAMPS modules
#
#-------------------------------------------------------------------------
import GrampsGconfKeys
import DateParser
import DateDisplay
@ -124,9 +123,14 @@ except:
parser = DateParser.DateParser()
try:
import GrampsGconfKeys
val = GrampsGconfKeys.get_date_format(_lang_to_display[_lang].formats)
except:
val = 0
try:
displayer = _lang_to_display[_lang](val)
except:
print "Date displayer for",_lang,"not available, using default"
displayer = DateDisplay.DateDisplay(3)
displayer = DateDisplay.DateDisplay(val)