Commit a87aad81 authored by Jason R. Coombs's avatar Jason R. Coombs

Make sure there's a blank line between files

parent a8e43700
...@@ -114,7 +114,7 @@ if os.path.exists('CHANGES (links).txt'): ...@@ -114,7 +114,7 @@ if os.path.exists('CHANGES (links).txt'):
else: else:
# but if the release script has not run, fall back to the source file # but if the release script has not run, fall back to the source file
changes_file = open('CHANGES.txt') 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() readme_file.close()
changes_file.close() changes_file.close()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment