aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-28 17:24:43 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-28 17:24:43 -0400
commita87aad81100c8ec8a457f7e15ddd3e04a83e82f5 (patch)
tree7762b3a0e8fe206148bb3d30b61241b96abb6196 /setup.py
parenta8e437006a04ec091b4a88434698e4e7c7d3b0fe (diff)
downloadexternal_python_setuptools-a87aad81100c8ec8a457f7e15ddd3e04a83e82f5.tar.gz
external_python_setuptools-a87aad81100c8ec8a457f7e15ddd3e04a83e82f5.tar.bz2
external_python_setuptools-a87aad81100c8ec8a457f7e15ddd3e04a83e82f5.zip
Make sure there's a blank line between files
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 684ef64f..e05e5957 100755
--- a/setup.py
+++ b/setup.py
@@ -114,7 +114,7 @@ if os.path.exists('CHANGES (links).txt'):
else:
# but if the release script has not run, fall back to the source file
changes_file = open('CHANGES.txt')
-long_description = readme_file.read() + changes_file.read()
+long_description = readme_file.read() + '\n' + changes_file.read()
readme_file.close()
changes_file.close()