esn83
Results
2
comments of
esn83
Thank you! However I'm still getting the same error: ``` line 44, in __init__ if PX_open_file(self.pxdoc, file_path.encode(self.PX_ENCODING)) != 0: UnicodeEncodeError: 'ascii' codec can't encode character '\xe6' in position 64: ordinal...
For those who are interested I resolved the issue by editing the` __init__.py` file changing the hardcoded encoding 'ascii' in PX_ENCODING to the correct encoding of the .DB file. ```...