From b8d1966d93377abc31afe02ea6bfd1e6c4b9da66 Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Tue, 1 Nov 2016 12:18:04 +0100 Subject: [PATCH] Fix help message for 'type-list' command Change help about private volume types according to the implementation. Change-Id: I59d811c4a6afb1a8162cf25ff1a734facbf68d8d Related-Bug: #1637549 --- cinderclient/v3/shell.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cinderclient/v3/shell.py b/cinderclient/v3/shell.py index 558fb0013..33b3426c2 100644 --- a/cinderclient/v3/shell.py +++ b/cinderclient/v3/shell.py @@ -938,7 +938,10 @@ def _print_group_type_list(gtypes): @utils.service_type('volumev3') def do_type_list(cs, args): - """Lists available 'volume types'. (Admin only will see private types)""" + """Lists available 'volume types'. + + (Only admin and tenant users will see private types) + """ vtypes = cs.volume_types.list() _print_volume_type_list(vtypes)