Skip to content

Commit 7b4b788

Browse files
committed
Bugs item #1069409 C:\Python24\Lib\compileall.py returns False
* return an integer rather than a boolean
1 parent 5d01aa4 commit 7b4b788

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/compileall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,5 @@ def main():
153153
return success
154154

155155
if __name__ == '__main__':
156-
exit_status = not main()
156+
exit_status = int(not main())
157157
sys.exit(exit_status)

0 commit comments

Comments
 (0)