Skip to content

Commit 5d0a48a

Browse files
specify encoding to prevent error
prevents cp949 illegal multibyte sequence error on non-latin languages
1 parent f22c2fa commit 5d0a48a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
with open("README.md", "r") as fh:
3+
with open("README.md", "r", encoding = "utf-8") as fh:
44
long_description = fh.read()
55

66
setuptools.setup(

0 commit comments

Comments
 (0)