Skip to content

Commit

Permalink
Fix README.md parsing in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
douglaslassance committed Oct 16, 2020
1 parent 9a6da92 commit 423a9ec
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 @@ -11,7 +11,7 @@
import airstorm # noqa: E402 pylint: disable=C0413

# Get the long description from the README file.
with open(os.path.join(dirname, "README.md")) as fle:
with open(os.path.join(dirname, "README.md"), encoding='utf-8') as fle:
long_description = fle.read()

setup(
Expand Down

0 comments on commit 423a9ec

Please sign in to comment.