Skip to content

Commit

Permalink
enforce 'utf-8' encoding, fixes gorakhargosh#615
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkirill committed Jan 27, 2020
1 parent 42aae6e commit 0f3396b
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 @@ -79,10 +79,10 @@
'watchmedo': ['PyYAML>=3.10', 'argh>=0.24.1'],
}

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

with open('changelog.rst') as f:
with open('changelog.rst', encoding='utf-8') as f:
changelog = f.read()

setup(name="watchdog",
Expand Down

0 comments on commit 0f3396b

Please sign in to comment.