summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-07-18 12:07:40 +0000
committerGerrit Code Review <review@openstack.org>2014-07-18 12:07:40 +0000
commit0330b94abc71cf2b16f1a9f2502d606210092b65 (patch)
tree262ef3fe956a04714b9f941ebd9b0556af48419d
parent50361060467586f2fa4879ae24d618a4fbfa8f5c (diff)
parentb6469b2ee936cafe7ad17f4ff3b0343eb7da4485 (diff)
downloadpython-troveclient-0330b94abc71cf2b16f1a9f2502d606210092b65.tar.gz
Merge "Fix trove help for show and flavor-show"
-rw-r--r--troveclient/v1/shell.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/troveclient/v1/shell.py b/troveclient/v1/shell.py
index cb63e18..829e97f 100644
--- a/troveclient/v1/shell.py
+++ b/troveclient/v1/shell.py
@@ -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."""
@@ -127,7 +127,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."""