Fix trove help for show and flavor-show

Added 'name' to the help for the CLI commands show and flavor-show

Change-Id: I845e648cbb371bf134d98de44e7f966172dc634a
Closes-Bug: #1322814
This commit is contained in:
SushilKM
2014-05-24 07:33:42 +00:00
parent d02764e597
commit b6469b2ee9

View File

@@ -92,7 +92,7 @@ def do_flavor_list(cs, args):
labels={'ram': 'RAM'})
@utils.arg('flavor', metavar='<flavor>', help='ID of the flavor.')
@utils.arg('flavor', metavar='<flavor>', help='ID or name of the flavor.')
@utils.service_type('database')
def do_flavor_show(cs, args):
"""Shows details of a flavor."""
@@ -121,7 +121,8 @@ def do_list(cs, args):
'flavor_id', 'size'])
@utils.arg('instance', metavar='<instance>', help='ID of the instance.')
@utils.arg('instance', metavar='<instance>',
help='ID or name of the instance.')
@utils.service_type('database')
def do_show(cs, args):
"""Shows details of an instance."""