diff options
| author | PJ Eby <distutils-sig@python.org> | 2009-10-19 19:46:34 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2009-10-19 19:46:34 +0000 |
| commit | de0eb5ca27896c10e01e1686913cbf01f4f540cb (patch) | |
| tree | c3f4f1a8c19fa6004b388da4c8cd8278f5793e10 /setuptools/command | |
| parent | e3aaece7b04a0947d15862cdcf0baf9900342e13 (diff) | |
| download | external_python_setuptools-de0eb5ca27896c10e01e1686913cbf01f4f540cb.tar.gz external_python_setuptools-de0eb5ca27896c10e01e1686913cbf01f4f540cb.tar.bz2 external_python_setuptools-de0eb5ca27896c10e01e1686913cbf01f4f540cb.zip | |
Release update, fix string.join in README warning
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4075540
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 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) |
