Fix test breakage introduced by 16af5e3

(imported from commit 6945b32a0ae1105c3ad91de5b9f98d39ae0228a5)
This commit is contained in:
Kevin Mehall 2013-07-19 10:49:34 -04:00
parent 6a333395ca
commit c7db0f8147
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ try:
logging.info("start custom")
failed = check_custom_checks()
logging.info("finish custom")
os._exit(not failed)
os._exit(1 if failed else 0)
logging.info("start pyflakes")
check_pyflakes()