summaryrefslogtreecommitdiff
path: root/script/autobuild.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-01 17:58:47 -0700
committerAndrew Tridgell <tridge@samba.org>2010-10-01 18:03:31 -0700
commitfaa993d95c0cdd29b52d64000e0f0c0585ff01af (patch)
tree51eef64c028f136c0b22792b9ea9c59f8b876018 /script/autobuild.py
parent87698dc2a1adb52c381b35f5cc80437f91e75798 (diff)
downloadsamba-faa993d95c0cdd29b52d64000e0f0c0585ff01af.tar.gz
samba-faa993d95c0cdd29b52d64000e0f0c0585ff01af.tar.bz2
samba-faa993d95c0cdd29b52d64000e0f0c0585ff01af.zip
autobuild: fixed tuple count for retry
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-xscript/autobuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 9c1520a2ca..62117ec650 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: