aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-13 15:00:07 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-13 15:00:07 -0500
commit3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af (patch)
treed290d78e8ccb8522f9048132a577998aebbbb3d7
parent9a010cff9c654b4224721111eed0a27bb5ce726a (diff)
downloadexternal_python_setuptools-3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af.tar.gz
external_python_setuptools-3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af.tar.bz2
external_python_setuptools-3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af.zip
Remove superfluous list construction.
-rwxr-xr-xsetuptools/command/egg_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index cbc30ff8..e7e4cd7e 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -345,9 +345,9 @@ class manifest_maker(sdist):
(which is looking for the absolute cmd.egg_info) will match
them.
"""
- self.filelist.allfiles.extend([
+ self.filelist.allfiles.extend(
os.path.join(cmd.egg_base, path)
- for path in distutils.filelist.findall(cmd.egg_base)])
+ for path in distutils.filelist.findall(cmd.egg_base))
def prune_file_list(self):
build = self.get_finalized_command('build')