Skip to content

Commit

Permalink
make previous change Python 3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
malb committed May 23, 2018
1 parent 8ce149b commit 0e11f51
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 @@ -204,7 +204,7 @@ def readme_to_long_description():
"""
long_description=open('README.rst').read()
cut = long_description.index("Attribution & License")
return long_description[:cut].encode('ascii')
return str(long_description[:cut].encode('ascii'))


setup(
Expand Down

0 comments on commit 0e11f51

Please sign in to comment.