diff options
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r-- | Lib/compileall.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py index d3cff6a..693eda9 100644 --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -228,7 +228,8 @@ def main(): success = False return success else: - return compile_path(legacy=args.legacy) + return compile_path(legacy=args.legacy, force=args.force, + quiet=args.quiet) except KeyboardInterrupt: print("\n[interrupted]") return False |