Patch #975885: print file name in err msg in quiet mode
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 @@
                 except KeyboardInterrupt:
                     raise KeyboardInterrupt
                 except py_compile.PyCompileError,err:
+                    if quiet:
+                        print 'Compiling', fullname, '...'
                     print err.msg
                     success = 0
                 except IOError, e: