Catch ValueError on Gspell import

This commit is contained in:
Philipp Hörist 2017-11-26 01:11:19 +01:00
parent 92917c18fc
commit b3ef0d6196
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ try:
HAVE_SPELL = True
else:
spell_log.info('No dicts available')
except ImportError:
except (ImportError, ValueError):
pass
gajim_identity = {'type': 'pc', 'category': 'client', 'name': 'Gajim'}