projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0ca3f2
)
Patch from Joe Van Andel: fix arg to % operator in warning.
author
Greg Ward
<gward@python.net>
Wed, 2 Feb 2000 00:07:14 +0000
(
00:07
+0000)
committer
Greg Ward
<gward@python.net>
Wed, 2 Feb 2000 00:07:14 +0000
(
00:07
+0000)
Lib/distutils/command/build_py.py
patch
|
blob
|
history
diff --git
a/Lib/distutils/command/build_py.py
b/Lib/distutils/command/build_py.py
index 57ddf7e7ea653d5ddd814307e2af33680b69243e..048962b29fbf714ae82c0663ad4f02c37c951065 100644
(file)
--- a/
Lib/distutils/command/build_py.py
+++ b/
Lib/distutils/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