summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2018-08-27 13:30:37 +1200
committerAndrew Bartlett <abartlet@samba.org>2018-08-27 08:53:20 +0200
commit9a3b64707f368f17df2d0a0b95627d076c96a273 (patch)
tree27a6cc8874a6cd21999aa0864821864750db3f7e /script
parent05389bcbf854eaad1e299d5bea7d68806f7b72ba (diff)
downloadsamba-9a3b64707f368f17df2d0a0b95627d076c96a273.tar.gz
autobuild: Fix -py3 support to look in tasks (the table with the tests) not tasknames (the requested list)
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 5fac8d312d2..fcb4e4af026 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -475,7 +475,7 @@ class buildlist(object):
os.environ['AUTOBUILD_RANDOM_SLEEP_OVERRIDE'] = '1'
for n in tasknames:
- if n not in tasknames and n.endswith("-py3"):
+ if n not in tasks and n.endswith("-py3"):
b = builder(n,
tasks[n[:-4]],
cp=n is not "pidl",