Skip to content

Commit

Permalink
Fix setup.py long_description()
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileyChris committed Oct 21, 2014
1 parent c6580a6 commit 398a5b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -15,14 +15,13 @@ def long_description():
for name in ('README.rst', 'CHANGES.rst'):
with io.open(os.path.join(base_path, name), encoding='utf-8') as f:
content.append(f.read())
'\n\n'.join(content)
return '\n\n'.join(content)


setup(
name='qrcode',
version='5.0.1.post',
url='https://github.com/lincolnloop/python-qrcode',
#download_url='',
description='QR Code image generator',
license='BSD',
long_description=long_description(),
Expand Down

0 comments on commit 398a5b7

Please sign in to comment.