Skip to content

Commit

Permalink
Merge pull request #40 from msabramo/remove_extra_lines_from_desc_on_…
Browse files Browse the repository at this point in the history
…PyPI

Remove extra lines from desc on PyPI
  • Loading branch information
ralphbean committed Jan 12, 2015
2 parents 5b63e2e + 11e593f commit d99300b
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 @@ -17,7 +17,7 @@

def get_description():
with open('README.rst', 'r') as f:
return '\n'.join(f.readlines()[2:])
return ''.join(f.readlines()[2:])

requires = [
'SQLAlchemy>=0.8',
Expand Down

0 comments on commit d99300b

Please sign in to comment.