Commit 8ddfbc2a authored by Jason R. Coombs's avatar Jason R. Coombs

Use iterables to determine the best filename to use for changes.

parent 184e94eb
...@@ -90,12 +90,12 @@ class test(_test): ...@@ -90,12 +90,12 @@ class test(_test):
readme_file = io.open('README.txt', encoding='utf-8') readme_file = io.open('README.txt', encoding='utf-8')
# the release script adds hyperlinks to issues # The release script adds hyperlinks to issues,
if os.path.exists('CHANGES (links).txt'): # but if the release script has not run, fall back to the source file
changes_file = io.open('CHANGES (links).txt', encoding='utf-8') changes_names = 'CHANGES (links).txt', 'CHANGES.txt'
else: changes_fn = next(filter(os.path.exists, changes_names))
# but if the release script has not run, fall back to the source file changes_file = io.open(changes_fn, encoding='utf-8')
changes_file = io.open('CHANGES.txt', encoding='utf-8')
with readme_file: with readme_file:
with changes_file: with changes_file:
long_description = readme_file.read() + '\n' + changes_file.read() long_description = readme_file.read() + '\n' + changes_file.read()
......
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