Skip to content

Commit

Permalink
Don't assume that system encoding is set to UTF-8 during install
Browse files Browse the repository at this point in the history
But really though, it should be.
  • Loading branch information
leovp committed Jan 9, 2020
1 parent fdd92de commit 2900fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()


setuptools.setup(
Expand Down

0 comments on commit 2900fc7

Please sign in to comment.