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 | 91a364884383899277b7871e674962516c8b57fd (patch) | |
| tree | c3f4f1a8c19fa6004b388da4c8cd8278f5793e10 /setuptools | |
| parent | 7096edd32701f328862943732fd73eed4f8c39b1 (diff) | |
| download | python-setuptools-bitbucket-91a364884383899277b7871e674962516c8b57fd.tar.gz | |
Release update, fix string.join in README warning
Diffstat (limited to 'setuptools')
| -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) |
