summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-05-16 00:15:06 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-05-16 00:15:06 -0400
commit592c525ea6ae94f6d5434e25f6db1bb8f8ff73c5 (patch)
tree29c1ee2970d1f643c91878a9c0f1c30ad5ebd41f
parent4ba4909fe29c82db4a5db4bab2c0de2e6e0b1d10 (diff)
downloadpython-setuptools-git-592c525ea6ae94f6d5434e25f6db1bb8f8ff73c5.tar.gz
Reindent
-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 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:"):