summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/compileall.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index f906c80..a1f252e 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -66,6 +66,8 @@ def compile_dir(dir, maxlevels=10, ddir=None,
except KeyboardInterrupt:
raise KeyboardInterrupt
except py_compile.PyCompileError,err:
+ if quiet:
+ print 'Compiling', fullname, '...'
print err.msg
success = 0
except IOError, e: