summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2009-10-19 19:46:34 +0000
committerPJ Eby <distutils-sig@python.org>2009-10-19 19:46:34 +0000
commit91a364884383899277b7871e674962516c8b57fd (patch)
treec3f4f1a8c19fa6004b388da4c8cd8278f5793e10 /setuptools
parent7096edd32701f328862943732fd73eed4f8c39b1 (diff)
downloadpython-setuptools-bitbucket-91a364884383899277b7871e674962516c8b57fd.tar.gz
Release update, fix string.join in README warning
Diffstat (limited to 'setuptools')
-rwxr-xr-xsetuptools/command/sdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index d5121de5..d84afdb8 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -181,7 +181,7 @@ class sdist(_sdist):
if not got_it:
self.warn("standard file not found: should have one of " +
- string.join(alts, ', '))
+ ', '.join(alts))
else:
if os.path.exists(fn):
self.filelist.append(fn)