]> granicus.if.org Git - python/commitdiff
Patch from Joe Van Andel: fix arg to % operator in warning.
authorGreg Ward <gward@python.net>
Wed, 2 Feb 2000 00:07:14 +0000 (00:07 +0000)
committerGreg Ward <gward@python.net>
Wed, 2 Feb 2000 00:07:14 +0000 (00:07 +0000)
Lib/distutils/command/build_py.py

index 57ddf7e7ea653d5ddd814307e2af33680b69243e..048962b29fbf714ae82c0663ad4f02c37c951065 100644 (file)
@@ -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