summaryrefslogtreecommitdiff
path: root/command/build_py.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-02-02 00:07:14 +0000
committerGreg Ward <gward@python.net>2000-02-02 00:07:14 +0000
commit0298b16d8f10a056dbd74b2b68c425fcf873d6e2 (patch)
tree2392b3a4b85bd05462fb0e988b32912c8a457d31 /command/build_py.py
parent439aa60615c8ada638e789a78159d26091838ffe (diff)
downloadpython-setuptools-git-0298b16d8f10a056dbd74b2b68c425fcf873d6e2.tar.gz
Patch from Joe Van Andel: fix arg to % operator in warning.
Diffstat (limited to 'command/build_py.py')
-rw-r--r--command/build_py.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/command/build_py.py b/command/build_py.py
index 57ddf7e7..048962b2 100644
--- a/command/build_py.py
+++ b/command/build_py.py
@@ -160,8 +160,8 @@ class BuildPy (Command):
def check_module (self, module, module_file):
if not os.path.isfile (module_file):
- self.warn ("file %s (for module %s) not found" %
- module_file, module)
+ self.warn ("file %s (for module %s) not found" %
+ (module_file, module))
return 0
else:
return 1