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

* return an integer rather than a boolean
This commit is contained in:
Raymond Hettinger 2004-12-20 00:29:29 +00:00
parent 5d01aa4f6a
commit 7b4b788eaa
1 changed files with 1 additions and 1 deletions

View File

@ -153,5 +153,5 @@ def main():
return success
if __name__ == '__main__':
exit_status = not main()
exit_status = int(not main())
sys.exit(exit_status)