From: Greg Ward Date: Wed, 2 Aug 2000 01:34:18 +0000 (+0000) Subject: Rene Liebscher: fix 'skipping byte-compilation' message for grammatical X-Git-Tag: v2.0b1~625 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90c74cc4da5b1aa58a37799df16541870ddc4ff7;p=thirdparty%2FPython%2Fcpython.git Rene Liebscher: fix 'skipping byte-compilation' message for grammatical consistency. --- diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index d866d8cc82d3..1c15db14945d 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -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 ()