From: Greg Ward Date: Wed, 2 Feb 2000 00:07:14 +0000 (+0000) Subject: Patch from Joe Van Andel: fix arg to % operator in warning. X-Git-Tag: v1.6a1~516 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=113e70efa2b932a3ad2662875114133a1edb600c;p=thirdparty%2FPython%2Fcpython.git Patch from Joe Van Andel: fix arg to % operator in warning. --- diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 57ddf7e7ea65..048962b29fbf 100644 --- 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