diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-01 17:58:47 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-01 18:03:31 -0700 |
commit | faa993d95c0cdd29b52d64000e0f0c0585ff01af (patch) | |
tree | 51eef64c028f136c0b22792b9ea9c59f8b876018 /script | |
parent | 87698dc2a1adb52c381b35f5cc80437f91e75798 (diff) | |
download | samba-faa993d95c0cdd29b52d64000e0f0c0585ff01af.tar.gz samba-faa993d95c0cdd29b52d64000e0f0c0585ff01af.tar.bz2 samba-faa993d95c0cdd29b52d64000e0f0c0585ff01af.zip |
autobuild: fixed tuple count for retry
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 2 |
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: |