This commit is contained in:
Kovid Goyal 2011-08-19 19:05:00 -06:00
parent f5f81cbe85
commit 12072ac7d7

View File

@ -35,7 +35,7 @@ def load_icu():
if _icu is None:
print plugins['icu'][1]
else:
if not _icu.ok:
if not getattr(_icu, 'ok', False):
print 'icu not ok'
_icu = None
return _icu