Index: recipe_modules/rietveld/api.py |
diff --git a/recipe_modules/rietveld/api.py b/recipe_modules/rietveld/api.py |
index 4011a68bdf1129d71a7e5b268da739451342a630..b52ec0bc96632180d4857ef3f796d0b70f3cc048 100644 |
--- a/recipe_modules/rietveld/api.py |
+++ b/recipe_modules/rietveld/api.py |
@@ -67,22 +67,22 @@ |
if authentication == 'oauth2': |
step_result = self.m.python( |
'apply_issue', |
- self.m.infra_paths['depot_tools'].join('apply_issue.py'), [ |
+ self.m.path['depot_tools'].join('apply_issue.py'), [ |
'-r', self.m.path['checkout'].join(*root_pieces), |
'-i', issue_number, |
'-p', self.m.properties['patchset'], |
'-s', rietveld_url, |
- '-E', self.m.infra_paths['build'].join( |
- 'site_config', '.rietveld_client_email'), |
- '-k', self.m.infra_paths['build'].join( |
- 'site_config', '.rietveld_secret_key') |
+ '-E', self.m.path['build'].join('site_config', |
+ '.rietveld_client_email'), |
+ '-k', self.m.path['build'].join('site_config', |
+ '.rietveld_secret_key') |
], |
) |
else: |
step_result = self.m.python( |
'apply_issue', |
- self.m.infra_paths['depot_tools'].join('apply_issue.py'), [ |
+ self.m.path['depot_tools'].join('apply_issue.py'), [ |
'-r', self.m.path['checkout'].join(*root_pieces), |
'-i', issue_number, |
'-p', self.m.properties['patchset'], |