pyjulius
pyjulius copied to clipboard
Fix decoding code to treat unicode data correctly
I fixed the code related to decoding.
- In
core.py
, when a double byte data comes, you cannot calldecode
fordata
becausedata
only has one byte data. - In
models.py
you cannot calldecode
for the result ofxml.get('WORD')
because this method returnsunicode
.