aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/core/api.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipe_modules/core/api.py')
-rw-r--r--infra/bots/recipe_modules/core/api.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/infra/bots/recipe_modules/core/api.py b/infra/bots/recipe_modules/core/api.py
index 623189183c..005ee27733 100644
--- a/infra/bots/recipe_modules/core/api.py
+++ b/infra/bots/recipe_modules/core/api.py
@@ -144,13 +144,12 @@ class SkiaApi(recipe_api.RecipeApi):
# Run bot_update.
# Hack the patch ref if necessary.
- if self.m.properties.get('patch_storage', '') == 'gerrit':
- if self.m.bot_update._issue and self.m.bot_update._patchset:
- self.m.bot_update._gerrit_ref = 'refs/changes/%s/%d/%d' % (
- str(self.m.bot_update._issue)[-2:],
- self.m.bot_update._issue,
- self.m.bot_update._patchset,
- )
+ if self.m.bot_update._issue and self.m.bot_update._patchset:
+ self.m.bot_update._gerrit_ref = 'refs/changes/%s/%d/%d' % (
+ str(self.m.bot_update._issue)[-2:],
+ self.m.bot_update._issue,
+ self.m.bot_update._patchset,
+ )
self.m.gclient.c = gclient_cfg
with self.m.step.context({'cwd': self.m.vars.checkout_root}):