diff options
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: |