Skip to content

Commit

Permalink
Remove carriage returns in setup.py long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 23, 2020
1 parent 9bca8b2 commit 72698cc
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 smmap

if os.path.exists("README.md"):
long_description = codecs.open('README.md', "r", "utf-8").read()
long_description = codecs.open('README.md', "r", "utf-8").read().replace('\r\n', '\n')
else:
long_description = "See https://github.com/gitpython-developers/smmap"

Expand Down

0 comments on commit 72698cc

Please sign in to comment.