diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-13 15:00:07 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-13 15:00:07 -0500 |
commit | 3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af (patch) | |
tree | d290d78e8ccb8522f9048132a577998aebbbb3d7 | |
parent | 9a010cff9c654b4224721111eed0a27bb5ce726a (diff) | |
download | external_python_setuptools-3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af.tar.gz external_python_setuptools-3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af.tar.bz2 external_python_setuptools-3ad4ef1f994dcacc32b1a5f77d4c119ec0ce75af.zip |
Remove superfluous list construction.
-rwxr-xr-x | setuptools/command/egg_info.py | 4 |
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') |