From faa993d95c0cdd29b52d64000e0f0c0585ff01af Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 1 Oct 2010 17:58:47 -0700 Subject: [PATCH] autobuild: fixed tuple count for retry --- script/autobuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/autobuild.py b/script/autobuild.py index 9c1520a2caf..62117ec6508 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -200,7 +200,7 @@ class buildlist(object): if options.retry and self.need_retry: self.kill_kids() print("retry needed") - return (0, "retry") + return (0, None, None, None, "retry") if b is None: break if os.WIFSIGNALED(b.status) or os.WEXITSTATUS(b.status) != 0: -- 2.34.1