| 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')
|
|
|