summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-10-03 21:03:26 (GMT)
committerGreg Ward <gward@python.net>1999-10-03 21:03:26 (GMT)
commitef9ad6df0160a6337632a9d3047dd0d072f5c3e4 (patch)
treef71c41ae023f12837faac5fede2c919ce36813d1 /Lib/distutils/command/install_lib.py
parent0c35ac62d8e4e40bef4e1687be51bf0fe619c01d (diff)
downloadcpython-ef9ad6df0160a6337632a9d3047dd0d072f5c3e4.zip
cpython-ef9ad6df0160a6337632a9d3047dd0d072f5c3e4.tar.gz
cpython-ef9ad6df0160a6337632a9d3047dd0d072f5c3e4.tar.bz2
Tweaked verbosity messages for byte-compilation.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 978bb3b..35deaa8 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -66,8 +66,8 @@ class InstallPy (Command):
out_fn = string.replace (f, '.py', '.pyc')
self.make_file (f, out_fn, compile, (f,),
- "compiling %s -> %s" % (f, out_fn),
- "compilation of %s skipped" % f)
+ "byte-compiling %s" % f,
+ "byte-compilation of %s skipped" % f)
# XXX ignore self.optimize for now, since we don't really know if
# we're compiling optimally or not, and couldn't pick what to do