autobuild: fixed tuple count for retry
authorAndrew Tridgell <tridge@samba.org>
Sat, 2 Oct 2010 00:58:47 +0000 (17:58 -0700)
committerAndrew Tridgell <tridge@samba.org>
Sat, 2 Oct 2010 01:03:31 +0000 (18:03 -0700)
script/autobuild.py

index 9c1520a2cafe82861dac383e293fcfd4f3e83bb0..62117ec6508e12aaa2f50d34e91c0dd122a91906 100755 (executable)
@@ -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: