diff options
| author | Greg Ward <gward@python.net> | 2000-02-02 00:07:14 +0000 |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-02-02 00:07:14 +0000 |
| commit | 0298b16d8f10a056dbd74b2b68c425fcf873d6e2 (patch) | |
| tree | 2392b3a4b85bd05462fb0e988b32912c8a457d31 /command/build_py.py | |
| parent | 439aa60615c8ada638e789a78159d26091838ffe (diff) | |
| download | python-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.py | 4 |
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 |
