From e38b8d93ea4cff84cad25e89930fea6f9ea96de5 Mon Sep 17 00:00:00 2001 From: sander Date: Thu, 18 Feb 2016 01:01:25 +0100 Subject: [PATCH] Fix failure message --- Tools/CI/MissionCheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/CI/MissionCheck.py b/Tools/CI/MissionCheck.py index 86017dcf07..674c123aaf 100644 --- a/Tools/CI/MissionCheck.py +++ b/Tools/CI/MissionCheck.py @@ -216,5 +216,5 @@ if elapsed_time < max_execution_time: print "Mission succesful time elapsed %s" % elapsed_time sys.exit(0) -print "Mission FAILED to execute within %s seconds time elapsed %s" % max_execution_time % elapsed_time +print "Mission FAILED to execute within %s seconds" % max_execution_time sys.exit(99)