From 48a474327af5073ec4d557b2e682115febbe0706 Mon Sep 17 00:00:00 2001 From: tengqm Date: Thu, 14 May 2015 23:35:40 -0400 Subject: [PATCH] Fixed an error in webhook_show The parameter description was incorrect. Change-Id: I817ca6f67f9b94f136298a5a193850840d49ff59 --- senlinclient/v1/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/senlinclient/v1/shell.py b/senlinclient/v1/shell.py index 318ee724..de400765 100644 --- a/senlinclient/v1/shell.py +++ b/senlinclient/v1/shell.py @@ -320,7 +320,7 @@ def _show_webhook(sc, webhook_id=None, webhook=None): @utils.arg('id', metavar='', - help=_('Name of the webhook to be updated.')) + help=_('Name or ID of the webhook to show.')) def do_webhook_show(sc, args): '''Show the webhook details.''' _show_webhook(sc, webhook_id=args.id)