Commit 5fb0798f authored by Greg Ward's avatar Greg Ward

Tweaked verbosity messages for byte-compilation.

parent bf658c01
...@@ -66,8 +66,8 @@ class InstallPy (Command): ...@@ -66,8 +66,8 @@ class InstallPy (Command):
out_fn = string.replace (f, '.py', '.pyc') out_fn = string.replace (f, '.py', '.pyc')
self.make_file (f, out_fn, compile, (f,), self.make_file (f, out_fn, compile, (f,),
"compiling %s -> %s" % (f, out_fn), "byte-compiling %s" % f,
"compilation of %s skipped" % f) "byte-compilation of %s skipped" % f)
# XXX ignore self.optimize for now, since we don't really know if # 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 # we're compiling optimally or not, and couldn't pick what to do
......
...@@ -66,8 +66,8 @@ class InstallPy (Command): ...@@ -66,8 +66,8 @@ class InstallPy (Command):
out_fn = string.replace (f, '.py', '.pyc') out_fn = string.replace (f, '.py', '.pyc')
self.make_file (f, out_fn, compile, (f,), self.make_file (f, out_fn, compile, (f,),
"compiling %s -> %s" % (f, out_fn), "byte-compiling %s" % f,
"compilation of %s skipped" % f) "byte-compilation of %s skipped" % f)
# XXX ignore self.optimize for now, since we don't really know if # 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 # we're compiling optimally or not, and couldn't pick what to do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment