[gardening] Use sys.exit(...) instead of exit(...)

This commit is contained in:
practicalswift
2017-02-21 11:56:38 +01:00
parent cdf5559716
commit 9dcafda754

View File

@@ -133,5 +133,5 @@ if over_time:
% args.time)
if over_mem or over_time:
exit(-1)
exit(ret)
sys.exit(-1)
sys.exit(ret)