Index: scripts/slave/recipe_modules/auto_bisect/api.py |
diff --git a/scripts/slave/recipe_modules/auto_bisect/api.py b/scripts/slave/recipe_modules/auto_bisect/api.py |
index 274a82f458a350f2de964b53da2e4dee0d15dbee..bcf8d563250c6fb137985e623a02b46fa5609f05 100644 |
--- a/scripts/slave/recipe_modules/auto_bisect/api.py |
+++ b/scripts/slave/recipe_modules/auto_bisect/api.py |
@@ -110,11 +110,11 @@ class AutoBisectApi(recipe_api.RecipeApi): |
the bisect script will use this to override the default config file |
path. |
""" |
- self.m.step( |
+ self.m.python( |
'Preparing for Bisection', |
- [self.m.path['checkout'].join('tools', |
- 'prepare-bisect-perf-regression.py'), |
- '-w', self.m.path['slave_build']]) |
+ script=self.m.path['checkout'].join( |
+ 'tools', 'prepare-bisect-perf-regression.py'), |
+ args=['-w', self.m.path['slave_build']]) |
args = [] |
kwargs['allow_subannotations'] = True |