Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1011)

Unified Diff: recipe_modules/git_cl/api.py

Issue 1915833003: tryserver recipe_module: Add get_tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Fix copyright. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: recipe_modules/git_cl/api.py
diff --git a/recipe_modules/git_cl/api.py b/recipe_modules/git_cl/api.py
index 0cb1f53e308e99302794adef384e686caf976fa8..fd368b98541e545850d77b1cb6897d3600c18fc2 100644
--- a/recipe_modules/git_cl/api.py
+++ b/recipe_modules/git_cl/api.py
@@ -14,12 +14,23 @@ class GitClApi(recipe_api.RecipeApi):
return self.m.step(
name, [self.package_repo_resource('git_cl.py')] + args, **kwargs)
- def get_description(self, **kwargs):
- return self('description', ['-d'], stdout=self.m.raw_io.output(), **kwargs)
+ def get_description(self, patch=None, codereview=None, **kwargs):
+ args = ['-d']
+ if patch or codereview:
+ assert patch and codereview, "Both patch and codereview must be provided"
iannucci 2016/05/12 00:25:52 why make them optional and defaulted to None then?
martiniss 2016/05/13 19:23:56 If one of them is provided, the other must be prov
iannucci 2016/05/23 19:52:33 Acknowledged.
+ args.append(patch)
+ args.append('--%s' % codereview)
+
+ return self('description', args, stdout=self.m.raw_io.output(), **kwargs)
+
+ def set_description(self, description, patch=None, codereview=None, **kwargs):
+ args = ['-n', '-']
+ if patch or codereview:
+ assert patch and codereview, "Both patch and codereview must be provided"
+ args.append(patch)
+ args.append('--%s' % codereview)
- def set_description(self, description, **kwargs):
return self(
- 'description', ['-n', '-'],
- stdout=self.m.raw_io.output(),
+ 'description', args, stdout=self.m.raw_io.output(),
stdin=self.m.raw_io.input(data=description),
name='git_cl set description', **kwargs)

Powered by Google App Engine
This is Rietveld 408576698