Alexander Korsunsky

Results 11 comments of Alexander Korsunsky

Same error as #455 and it can be fixed like this: https://github.com/WhiteMagic/JoystickGremlin/blob/54cf26ac7b3b8f3d4c3807e5af3f7ebb36be9125/dill/__init__.py#L357 ```diff - self.name = data.name.decode("utf-8") + self.name = data.name.decode("utf-8", errors="ignore") ``` Thanks for @Oinosseus for the workaround, that...