Skip to content

Commit

Permalink
Merge pull request #28 from opusonesolutions/force-encoding-read
Browse files Browse the repository at this point in the history
Ensure the readme is read using UTF-8 encoding.
  • Loading branch information
AnjoMan authored Jun 24, 2019
2 parents 8d21445 + 4f73157 commit 5f09460
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 @@ -6,7 +6,7 @@


def readme():
with open("README.md", 'r') as f:
with open("README.md", 'r', encoding='UTF-8') as f:
return f.read()


Expand Down

0 comments on commit 5f09460

Please sign in to comment.