mirror of https://github.com/python/cpython.git
Bugs item #1069409 C:\Python24\Lib\compileall.py returns False
* return an integer rather than a boolean
This commit is contained in:
parent
5d01aa4f6a
commit
7b4b788eaa
|
@ -153,5 +153,5 @@ def main():
|
|||
return success
|
||||
|
||||
if __name__ == '__main__':
|
||||
exit_status = not main()
|
||||
exit_status = int(not main())
|
||||
sys.exit(exit_status)
|
||||
|
|
Loading…
Reference in New Issue