summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/compileall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index a1f252eb46..b21d95f82c 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -153,5 +153,5 @@ def main():
return success
if __name__ == '__main__':
- exit_status = not main()
+ exit_status = int(not main())
sys.exit(exit_status)