|
The problem arises when the program try to read the senses.csv file temporally created in C:\Users\xxxxx\AppData\Local\Temp\_MEInnnnnn
This issue can be produce when Python opens text files in the locale default encoding; if that encoding cannot handle the Unicode values. Because of this, I sugest you to try in other machine.
The problem could be solved if you change line 358 in the script:
with open(senses_path, 'rt') as f:
for
with open(senses_path, 'rt', encoding='UTF-8')
|