summaryrefslogtreecommitdiff
path: root/heatclient/v1
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-31 16:20:28 +0000
committerGerrit Code Review <review@openstack.org>2016-08-31 16:20:28 +0000
commited287fb91364f6bdd8c91c2f60d6523c3cd2af70 (patch)
tree98b8e26e9d8b7e6c4833f4276c5e76763f1fd562 /heatclient/v1
parentda0da4c1afc00dd2732b678b09fc2d826137a44d (diff)
parent4f3e7cd99e1d8906a9f4e43a91161beb8af96bc3 (diff)
downloadpython-heatclient-ed287fb91364f6bdd8c91c2f60d6523c3cd2af70.tar.gz
Merge "Trivial:Standardize the output format of 'help' in shell.py"
Diffstat (limited to 'heatclient/v1')
-rw-r--r--heatclient/v1/shell.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py
index 76d40a4..ac4ecb9 100644
--- a/heatclient/v1/shell.py
+++ b/heatclient/v1/shell.py
@@ -417,7 +417,7 @@ def do_action_check(hc, args):
@utils.arg('id', metavar='<NAME or ID>',
help=_('Name or ID of stack to describe.'))
@utils.arg('--no-resolve-outputs', action="store_true",
- help='Do not resolve outputs of the stack.')
+ help=_('Do not resolve outputs of the stack.'))
def do_stack_show(hc, args):
'''Describe the stack.'''
show_deprecated('heat stack-show', 'openstack stack show')
@@ -462,10 +462,10 @@ def do_stack_show(hc, args):
'updated.')
% {'true': strutils.TRUE_STRINGS, 'false': strutils.FALSE_STRINGS})
@utils.arg('-y', '--dry-run', default=False, action="store_true",
- help='Do not actually perform the stack update, but show what '
- 'would be changed')
+ help=_('Do not actually perform the stack update, but show what '
+ 'would be changed'))
@utils.arg('-n', '--show-nested', default=False, action="store_true",
- help='Show nested stacks when performing --dry-run')
+ help=_('Show nested stacks when performing --dry-run'))
@utils.arg('-P', '--parameters', metavar='<KEY1=VALUE1;KEY2=VALUE2...>',
help=_('Parameter values used to create the stack. '
'This can be specified multiple times, or once with '