GrampsLocale: Allow for importing older PyICU packages
svn: r21287
This commit is contained in:
parent
85ae2aca09
commit
06ce88cef4
@ -39,8 +39,12 @@ HAVE_ICU = False
|
||||
try:
|
||||
from icu import Locale, Collator
|
||||
HAVE_ICU = True
|
||||
except ImportError as err:
|
||||
LOG.warning("ICU is not installed because %s, localization will be impaired", str(err))
|
||||
except ImportError:
|
||||
try:
|
||||
from PyICU import Locale, Collator
|
||||
HAVE_ICU = True
|
||||
except ImportError as err:
|
||||
LOG.warning("ICU is not installed because %s, localization will be impaired", str(err))
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# gramps modules
|
||||
|
Loading…
Reference in New Issue
Block a user