From 5fa10dc499978134adb8cfb206a2791fb05c94ae Mon Sep 17 00:00:00 2001 From: Peter Stachowski Date: Tue, 6 May 2014 10:49:34 -0400 Subject: [PATCH] Fix trove help for datastore-version-list and -show Added 'name' to the help for the CLI commands datastore-version-list and datastore-version-show Change-Id: I28be2d50ccaca6a2d19a8d0e74e831e6a8ed8238 Closes-Bug: #1316630 --- troveclient/v1/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/troveclient/v1/shell.py b/troveclient/v1/shell.py index 990b5552..8d406e39 100644 --- a/troveclient/v1/shell.py +++ b/troveclient/v1/shell.py @@ -609,7 +609,7 @@ def do_datastore_show(cs, args): @utils.arg('datastore', metavar='', - help='ID of the datastore.') + help='ID or name of the datastore.') @utils.service_type('database') def do_datastore_version_list(cs, args): """Lists available versions for a datastore.""" @@ -622,7 +622,7 @@ def do_datastore_version_list(cs, args): help='ID or name of the datastore. Optional if UUID of the' ' datastore_version is provided.') @utils.arg('datastore_version', metavar='', - help='ID of the datastore version.') + help='ID or name of the datastore version.') @utils.service_type('database') def do_datastore_version_show(cs, args): """Shows details of a datastore version."""