summaryrefslogtreecommitdiff
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-06-18 16:17:53 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-06-18 16:17:53 -0500
commitd1dee0f045c8096904369270899d73ef8b6a96bf (patch)
tree1e5abbc1456077713b0268af0914cfd857b07477 /setuptools/command/sdist.py
parentcae9a18f6df1e8acbab701e853fe076cdbae2467 (diff)
parentcf307155b6c687ea2a9f5369aca5b03007db7b8b (diff)
downloadpython-setuptools-bitbucket-0.8b1.tar.gz
Merge 0.7.3 release0.8b1
Diffstat (limited to 'setuptools/command/sdist.py')
-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 f8f964b3..39cd6043 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -210,7 +210,7 @@ class sdist(_sdist):
optional = ['test/test*.py', 'setup.cfg']
for pattern in optional:
- files = filter(os.path.isfile, glob(pattern))
+ files = list(filter(os.path.isfile, glob(pattern)))
if files:
self.filelist.extend(files)