]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Rene Liebscher: fix 'skipping byte-compilation' message for grammatical
authorGreg Ward <gward@python.net>
Wed, 2 Aug 2000 01:34:18 +0000 (01:34 +0000)
committerGreg Ward <gward@python.net>
Wed, 2 Aug 2000 01:34:18 +0000 (01:34 +0000)
consistency.

Lib/distutils/command/install_lib.py

index d866d8cc82d30845a739de35eed35f2039043268..1c15db14945d4dd1744c02c5dd25959d7be6716c 100644 (file)
@@ -74,7 +74,7 @@ class install_lib (Command):
                     out_fn = f + (__debug__ and "c" or "o")
                     compile_msg = "byte-compiling %s to %s" % \
                                   (f, os.path.basename (out_fn))
-                    skip_msg = "byte-compilation of %s skipped" % f
+                    skip_msg = "skipping byte-compilation of %s" % f
                     self.make_file (f, out_fn, compile, (f,),
                                     compile_msg, skip_msg)
     # run ()