Skip to content

Commit

Permalink
Fix encoding issues when installing the package (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierhardy authored and buxtronix committed Aug 2, 2018
1 parent 950b686 commit 1e1a07c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -25,7 +25,7 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
with open(path.join(here, 'README.md'), encoding="utf8") as f:
long_description = f.read()

setup(name='textfsm',
Expand Down

0 comments on commit 1e1a07c

Please sign in to comment.