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

Unified Diff: recipe_engine/remote.py

Issue 2848443003: [recipes.py] add missing helpstrings, merge test subcommands into main parser. (Closed)
Patch Set: rebase Created 3 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
« no previous file with comments | « recipe_engine/refs.py ('k') | recipe_engine/run.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/remote.py
diff --git a/recipe_engine/remote.py b/recipe_engine/remote.py
index e2a2e6e7b602eaeb6ede992b5352718e0cf9da55..58b0245ce8c10d8abb49dda4eb3223985ec2a404 100644
--- a/recipe_engine/remote.py
+++ b/recipe_engine/remote.py
@@ -33,9 +33,9 @@ def ensure_workdir(args):
def add_subparser(parser):
+ helpstr = 'Invoke a recipe command from specified repo and revision.'
remote_p = parser.add_parser(
- 'remote',
- description='Invoke a recipe command from specified repo and revision')
+ 'remote', help=helpstr, description=helpstr)
remote_p.add_argument(
'--repository', required=True,
help='URL of a git repository to fetch')
« no previous file with comments | « recipe_engine/refs.py ('k') | recipe_engine/run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698