1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-04-23 16:35:04 +02:00

Fix UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 2116: ordinal not in range(128)

This commit is contained in:
Hugo van Kemenade 2020-10-09 19:43:28 +03:00
parent 62b89200c6
commit d6af5dd65f

View File

@ -34,7 +34,7 @@ module1 = Extension(
)
with open("README.rst") as f:
with open("README.rst", encoding="utf-8") as f:
long_description = f.read()