Skip to content

Commit

Permalink
remove encoding from open
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonroy committed Feb 5, 2018
1 parent b4843fd commit 088d28e
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 @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
with open(os.path.join(here, 'README.md')) as f:
long_description = f.read()

setup(
Expand Down

0 comments on commit 088d28e

Please sign in to comment.