summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2009-10-19 21:02:06 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2009-10-19 21:02:06 +0000
commit42316a7ebf0c537c514030598cbe3b9de225dee2 (patch)
treee06fe195c86a7469237fc0d645089c11b796f5c0 /setuptools/command
parent81adebb142c33fdca2402df5e78919a687dd5c6f (diff)
downloadpython-setuptools-42316a7ebf0c537c514030598cbe3b9de225dee2.tar.gz
Fix lost launcher changes, string.split().
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@75543 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-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 d5121de..d84afdb 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)