Skip to content

Commit

Permalink
specify read encoding to allow pip install on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
selimb committed Sep 15, 2019
1 parent 69d13ae commit be3c071
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 @@ -2,7 +2,7 @@


def read(file_name):
with open(file_name) as fp:
with open(file_name, encoding="utf-8") as fp:
content = fp.read()
return content

Expand Down

0 comments on commit be3c071

Please sign in to comment.