Quote:
Originally Posted by ownedbycats
I ran Modify ePub on my test book with everything enabled. I ended up getting this log, although I'm not sure which option caused the error.
Code:
...
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
|
There are pages on the python site about how to convert python 2 to python 3 and things that will need to be fixed. One of the items was about how with python 2 the code could treat characters as binary data, but you can no longer do that with python 3. I suspect that this error is due to that.