diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-09-03 14:18:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-03 14:18:36 -0400 |
| commit | 1b192005562d5cf0de30c02154c58fd1dca577c8 (patch) | |
| tree | d51ae606608491f534a527c03374433d425afb44 /setuptools/command | |
| parent | a4980242d8b449e1ab08adaac073deff9efc9cc4 (diff) | |
| parent | e909e1cb7aff16a02a965fe3ebaa16a65d749d63 (diff) | |
| download | python-setuptools-git-1b192005562d5cf0de30c02154c58fd1dca577c8.tar.gz | |
Merge pull request #1141 from benoit-pierre/fix_py26_supportv36.4.0
Fix Python 2.6 support
Diffstat (limited to 'setuptools/command')
| -rwxr-xr-x | setuptools/command/sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 7b4d197d..508148e0 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -38,7 +38,7 @@ class sdist(sdist_add_defaults, orig.sdist): negative_opt = {} README_EXTENSIONS = ['', '.rst', '.txt', '.md'] - READMES = tuple('README{}'.format(ext) for ext in README_EXTENSIONS) + READMES = tuple('README{0}'.format(ext) for ext in README_EXTENSIONS) def run(self): self.run_command('egg_info') |
