From a2ccc85a7310783ca13a8d9a6b82cdde17f6bb27 Mon Sep 17 00:00:00 2001 From: Atsushi SAKAI Date: Wed, 2 Dec 2015 08:50:47 +0900 Subject: [PATCH] Fix comma location in comment comment message effects to CLI-reference message. Change-Id: I6d76d6bc6077b4915aaa74968e294abbc3f72f30 --- cinderclient/v2/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py index eb489a9..877b8b5 100644 --- a/cinderclient/v2/shell.py +++ b/cinderclient/v2/shell.py @@ -861,7 +861,7 @@ def do_type_show(cs, args): help='Make type accessible to the public or not.') @utils.service_type('volumev2') def do_type_update(cs, args): - """Updates volume type name ,description and/or is_public.""" + """Updates volume type name, description, and/or is_public.""" is_public = strutils.bool_from_string(args.is_public) vtype = cs.volume_types.update(args.id, args.name, args.description, is_public)