summaryrefslogtreecommitdiff
path: root/heatclient/osc
diff options
context:
space:
mode:
authorPeter Razumovsky <prazumovsky@mirantis.com>2016-10-12 16:34:08 +0300
committerPeter Razumovsky <prazumovsky@mirantis.com>2016-10-12 13:41:29 +0000
commit9abc3588c0f35533a9b8d3e040e158977ef8393f (patch)
tree22fbb43a2103f4619fe4e03d2282074c00ab88b7 /heatclient/osc
parent0d218c92beb8f0fa11a18c2dc56bb92ed7feb785 (diff)
downloadpython-heatclient-9abc3588c0f35533a9b8d3e040e158977ef8393f.tar.gz
Fix help string for osc resource show <resource>
Currently help string of <resource> tells "Name or ID of resource" which is wrong - resource-show doesn't accepts ID's of resources. Change-Id: I8b8f6c937e1119c90c0ef473c3784c0523593481 Related-bug: #1620291
Diffstat (limited to 'heatclient/osc')
-rw-r--r--heatclient/osc/v1/resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/osc/v1/resource.py b/heatclient/osc/v1/resource.py
index b7feb84..e29b077 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='<resource>',
- help=_('Name or ID of resource')
+ help=_('Name of resource')
)
parser.add_argument(
'--with-attr',