Index: scripts/slave/recipe_modules/rietveld/api.py |
diff --git a/scripts/slave/recipe_modules/rietveld/api.py b/scripts/slave/recipe_modules/rietveld/api.py |
index b0f5908526325b8b76dbb3949f0d51bc0db5b7cb..91486c955fb18061ef4e23fc585e62266eda4e8f 100644 |
--- a/scripts/slave/recipe_modules/rietveld/api.py |
+++ b/scripts/slave/recipe_modules/rietveld/api.py |
@@ -15,11 +15,12 @@ class RietveldApi(recipe_api.RecipeApi): |
return root |
def apply_issue(self, *root_pieces): |
- return self.m.step('apply_issue', [ |
- self.m.path.depot_tools('apply_issue'), |
+ return self.m.python('apply_issue', |
+ self.m.path.depot_tools('apply_issue.py'), [ |
'-r', self.m.path.checkout(*root_pieces), |
'-i', self.m.properties['issue'], |
'-p', self.m.properties['patchset'], |
'-s', self.m.properties['rietveld'], |
- '-e', 'commit-bot@chromium.org']) |
+ '-e', 'commit-bot@chromium.org', |
+ '--no-commit']) |