aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/egg_info.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/egg_info.py')
-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')