diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-31 10:19:25 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-31 10:19:25 -0500 |
commit | 7e6639875e34bd8150a2c430f4d214da9c197e94 (patch) | |
tree | 1af53128e3c4e4bd0e4968fe9c35c7a0a5e971be /setuptools/command/sdist.py | |
parent | f61070d6d216a3de70202b5c9cff9a125f1823b9 (diff) | |
download | external_python_setuptools-7e6639875e34bd8150a2c430f4d214da9c197e94.tar.gz external_python_setuptools-7e6639875e34bd8150a2c430f4d214da9c197e94.tar.bz2 external_python_setuptools-7e6639875e34bd8150a2c430f4d214da9c197e94.zip |
Remove superfluous parentheses
Diffstat (limited to 'setuptools/command/sdist.py')
-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 a4e8288a..3d33df80 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -9,7 +9,7 @@ from setuptools.utils import cs_path_exists import pkg_resources -READMES = ('README', 'README.rst', 'README.txt') +READMES = 'README', 'README.rst', 'README.txt' _default_revctrl = list |