[r21287] GrampsLocale: Allow for importing older PyICU packages

svn: r21422
This commit is contained in:
John Ralls 2013-02-24 01:49:07 +00:00
parent 252d2932df
commit 0bbbc76852

View File

@ -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