From 9abc3588c0f35533a9b8d3e040e158977ef8393f Mon Sep 17 00:00:00 2001 From: Peter Razumovsky Date: Wed, 12 Oct 2016 16:34:08 +0300 Subject: [PATCH] Fix help string for osc resource show Currently help string of tells "Name or ID of resource" which is wrong - resource-show doesn't accepts ID's of resources. Change-Id: I8b8f6c937e1119c90c0ef473c3784c0523593481 Related-bug: #1620291 --- heatclient/osc/v1/resource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heatclient/osc/v1/resource.py b/heatclient/osc/v1/resource.py index b7feb84c..e29b0778 100644 --- a/heatclient/osc/v1/resource.py +++ b/heatclient/osc/v1/resource.py @@ -43,7 +43,7 @@ class ResourceShow(command.ShowOne): parser.add_argument( 'resource', metavar='', - help=_('Name or ID of resource') + help=_('Name of resource') ) parser.add_argument( '--with-attr',