eevee / camel

Python serialization for adults
Other
154 stars 7 forks source link

Fix UnicodeDecodeError in Python3 #5

Closed SwooshyCueb closed 8 years ago

SwooshyCueb commented 8 years ago

That dash in the readme causes Python 3 builds to fail.

Traceback (most recent call last): File "setup.py", line 8, in <module> long_description=open('README.txt').read(), File "/usr/lib/python3.5/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 93: ordinal not in range(128)

This PR fixes that.

eevee commented 8 years ago

whoops 😎

SwooshyCueb commented 8 years ago

:+1: