diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py index ac4ecb9a..99a33f98 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='', - 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='', - 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='', - 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='', - 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='', help=_('Limit the number of stacks returned.')) @utils.arg('-m', '--marker', metavar='',