Skip to content

Commit

Permalink
Merge pull request #83 from htaghizadeh/patch-1
Browse files Browse the repository at this point in the history
Fix error: UnicodeDecodeError: 'charmap' codec can't decode byte 0x81…
  • Loading branch information
aboSamoor committed May 12, 2017
2 parents b262c22 + 7ba2610 commit ddb0f88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
from distutils.core import setup


with open('README.rst') as readme_file:
with open('README.rst', encoding="utf-8") as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
with open('HISTORY.rst', encoding="utf-8") as history_file:
history = history_file.read().replace('.. :changelog:', '')

packages = set(open("requirements.txt", "r").read().splitlines())
Expand Down

0 comments on commit ddb0f88

Please sign in to comment.