summaryrefslogtreecommitdiff
path: root/heatclient/v1
diff options
context:
space:
mode:
authorSharat Sharma <sharat.sharma@nectechnologies.in>2016-09-19 12:33:04 +0530
committerSharat Sharma <sharat.sharma@nectechnologies.in>2016-09-19 12:54:28 +0530
commit81284f3e82ff8ce4dd5a963932774ad749ef8901 (patch)
tree5a3e00508aa47192db89d0284b28f90c6a05ddd0 /heatclient/v1
parent67edf240c9d88309d44f7ea5b5040cfeb3914e04 (diff)
downloadpython-heatclient-81284f3e82ff8ce4dd5a963932774ad749ef8901.tar.gz
Improved the help message of the stack-list tags
The stack-list help message for tags was not very helpful and was confusing. So, changed the help message so that it is more understandable for the user. Change-Id: Ia49a40652a0c96ba257edb35bae4455be3373d0f Closes-Bug: #1625011
Diffstat (limited to 'heatclient/v1')
-rw-r--r--heatclient/v1/shell.py20
1 files changed, 12 insertions, 8 deletions
diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py
index ac4ecb9..99a33f9 100644
--- a/heatclient/v1/shell.py
+++ b/heatclient/v1/shell.py
@@ -604,17 +604,21 @@ def do_stack_cancel_update(hc, args):
'parameters separated by a semicolon.'),
action='append')
@utils.arg('-t', '--tags', metavar='<TAG1,TAG2...>',
- help=_('Show stacks containing these tags, combine multiple tags '
- 'using the boolean AND expression'))
+ help=_('Show stacks containing these tags. If multiple tags '
+ 'are passed, they will be combined using the AND '
+ 'boolean expression. '))
@utils.arg('--tags-any', metavar='<TAG1,TAG2...>',
- help=_('Show stacks containing these tags, combine multiple tags '
- 'using the boolean OR expression'))
+ help=_('Show stacks containing these tags, If multiple tags '
+ 'are passed, they will be combined using the OR '
+ 'boolean expression. '))
@utils.arg('--not-tags', metavar='<TAG1,TAG2...>',
- help=_('Show stacks not containing these tags, combine multiple '
- 'tags using the boolean AND expression'))
+ help=_('Show stacks not containing these tags, If multiple tags '
+ 'are passed, they will be combined using the AND '
+ 'boolean expression. '))
@utils.arg('--not-tags-any', metavar='<TAG1,TAG2...>',
- help=_('Show stacks not containing these tags, combine multiple '
- 'tags using the boolean OR expression'))
+ help=_('Show stacks not containing these tags, If multiple tags '
+ 'are passed, they will be combined using the OR '
+ 'boolean expression. '))
@utils.arg('-l', '--limit', metavar='<LIMIT>',
help=_('Limit the number of stacks returned.'))
@utils.arg('-m', '--marker', metavar='<ID>',