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
This commit is contained in:
Peter Razumovsky
2016-10-12 16:34:08 +03:00
parent 0d218c92be
commit 9abc3588c0

View File

@@ -43,7 +43,7 @@ class ResourceShow(command.ShowOne):
parser.add_argument( parser.add_argument(
'resource', 'resource',
metavar='<resource>', metavar='<resource>',
help=_('Name or ID of resource') help=_('Name of resource')
) )
parser.add_argument( parser.add_argument(
'--with-attr', '--with-attr',