diff options
Diffstat (limited to 'setuptools/command/egg_info.py')
| -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 ad3f4c17..00a50d0b 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -253,8 +253,8 @@ class manifest_maker(sdist): named by 'self.manifest'. """ files = [f.replace(os.sep, '/') for f in self.filelist.files] - self.execute(write_file, (self.manifest, files), - "writing manifest file '%s'" % self.manifest) + msg = "writing manifest file '%s'" % self.manifest + self.execute(write_file, (self.manifest, files), msg) def warn(self, msg): # suppress missing-file warnings from sdist if not msg.startswith("standard file not found:"): |
