1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

autobuild: fixed tuple count for retry

This commit is contained in:
Andrew Tridgell 2010-10-01 17:58:47 -07:00
parent 87698dc2a1
commit faa993d95c

View File

@ -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: