Fix error in stack-list metadata

In the --sort-keys option of the stack-list command, the metadata
lists keys separated by commas instead of semicolons.

Change-Id: I166d4dc48b97786a29c5d9ef6a5fb9411e80d6b1
This commit is contained in:
Bryan Jones 2015-10-15 18:18:35 +00:00
parent e716cd99dc
commit 1c89d67d4d
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ def do_stack_cancel_update(hc, args):
help=_('Limit the number of stacks returned.'))
@utils.arg('-m', '--marker', metavar='<ID>',
help=_('Only return stacks that appear after the given stack ID.'))
@utils.arg('-k', '--sort-keys', metavar='<KEY1,KEY2...>',
@utils.arg('-k', '--sort-keys', metavar='<KEY1;KEY2...>',
help=_('List of keys for sorting the returned stacks. '
'This can be specified multiple times or once with keys '
'separated by semicolons. Valid sorting keys include '