diff options
author | Greg Ward <gward@python.net> | 2000-08-02 01:34:18 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-08-02 01:34:18 (GMT) |
commit | 90c74cc4da5b1aa58a37799df16541870ddc4ff7 (patch) | |
tree | eadb85cf31baaca6544ab8d8fb55bab0df05ae43 /Lib/distutils | |
parent | bf5c70973f5c7bdd1e52b20c8d423b03f69418e4 (diff) | |
download | cpython-90c74cc4da5b1aa58a37799df16541870ddc4ff7.zip cpython-90c74cc4da5b1aa58a37799df16541870ddc4ff7.tar.gz cpython-90c74cc4da5b1aa58a37799df16541870ddc4ff7.tar.bz2 |
Rene Liebscher: fix 'skipping byte-compilation' message for grammatical
consistency.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install_lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index d866d8c..1c15db1 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 () |