Commit 7b4b788e authored by Raymond Hettinger's avatar Raymond Hettinger

Bugs item #1069409 C:\Python24\Lib\compileall.py returns False

* return an integer rather than a boolean
parent 5d01aa4f
......@@ -153,5 +153,5 @@ def main():
return success
if __name__ == '__main__':
exit_status = not main()
exit_status = int(not main())
sys.exit(exit_status)
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