Catch ValueError on Gspell import
This commit is contained in:
parent
92917c18fc
commit
b3ef0d6196
|
@ -266,7 +266,7 @@ try:
|
||||||
HAVE_SPELL = True
|
HAVE_SPELL = True
|
||||||
else:
|
else:
|
||||||
spell_log.info('No dicts available')
|
spell_log.info('No dicts available')
|
||||||
except ImportError:
|
except (ImportError, ValueError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
gajim_identity = {'type': 'pc', 'category': 'client', 'name': 'Gajim'}
|
gajim_identity = {'type': 'pc', 'category': 'client', 'name': 'Gajim'}
|
||||||
|
|
Loading…
Reference in New Issue