Closed
Description
Hi,
A coworker got this traceback when a plugin failed to import:
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe3' in position 9939: ordinal not in range(128)
This happened in config.py
, at this point:
except ImportError as e:
new_exc = ImportError('Error importing plugin "%s": %s' % (modname, e))
And it was caused because the message came from the OS in pt-BR due to a DLL not being found:
DLL load failed: Não foi possível encontrar o módulo especificado.
cc @dplucenio