Skip to content

Commit

Permalink
Fixed encoding on setup.py when reading README.rst.
Browse files Browse the repository at this point in the history
  • Loading branch information
ipazc committed Oct 10, 2017
1 parent 7eadb06 commit 6cf7ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
__author__ = 'Iván de Paz Centeno'

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

if sys.version_info < (3, 4, 1):
Expand Down

0 comments on commit 6cf7ef3

Please sign in to comment.