summaryrefslogtreecommitdiff
path: root/heatclient/osc/v1/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/osc/v1/event.py')
-rw-r--r--heatclient/osc/v1/event.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/heatclient/osc/v1/event.py b/heatclient/osc/v1/event.py
index 9cdf28a..b577e94 100644
--- a/heatclient/osc/v1/event.py
+++ b/heatclient/osc/v1/event.py
@@ -133,7 +133,7 @@ class ListEvent(command.Lister):
)
parser.add_argument(
'--sort',
- metavar='[<key>][:<direction>]',
+ metavar='<key>[:<direction>]',
action='append',
help=_('Sort output by selected keys and directions (asc or desc) '
'(default: asc). Specify multiple times to sort on '
@@ -141,7 +141,8 @@ class ListEvent(command.Lister):
'"event_time" (default), "resource_name", "links", '
'"logical_resource_id", "resource_status", '
'"resource_status_reason", "physical_resource_id", or '
- '"id".')
+ '"id". You can leave the key empty and specify ":desc" '
+ 'for sorting by reverse time.')
)
parser.add_argument(
'--follow',