Kaydet (Commit) 113e70ef authored tarafından Greg Ward's avatar Greg Ward

Patch from Joe Van Andel: fix arg to % operator in warning.

üst a0ca3f24
...@@ -160,8 +160,8 @@ class BuildPy (Command): ...@@ -160,8 +160,8 @@ class BuildPy (Command):
def check_module (self, module, module_file): def check_module (self, module, module_file):
if not os.path.isfile (module_file): if not os.path.isfile (module_file):
self.warn ("file %s (for module %s) not found" % self.warn ("file %s (for module %s) not found" %
module_file, module) (module_file, module))
return 0 return 0
else: else:
return 1 return 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment