summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/role.py
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2015-01-09 19:13:03 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2015-01-13 00:58:57 -0500
commit019c155e9b308dab002f23064b969452bc3d7a89 (patch)
treede747d74a7bdaecdbd1ae0490ba5b1e9dd43b068 /openstackclient/identity/v3/role.py
parent3b99c178949bc0864f927ac610a12fc666537162 (diff)
downloadpython-openstackclient-019c155e9b308dab002f23064b969452bc3d7a89.tar.gz
Fine tune some of the helps commands
try and add some consistency with the show and delete commands. replace 'show x' with 'display x' change 'delete a y' with just 'delete y' Change-Id: I47dfa8ee23ac5c41b355796415eb515155832f65
Diffstat (limited to 'openstackclient/identity/v3/role.py')
-rw-r--r--openstackclient/identity/v3/role.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/identity/v3/role.py b/openstackclient/identity/v3/role.py
index d680278e..03760709 100644
--- a/openstackclient/identity/v3/role.py
+++ b/openstackclient/identity/v3/role.py
@@ -467,7 +467,7 @@ class SetRole(command.Command):
class ShowRole(show.ShowOne):
- """Show single role"""
+ """Display role details"""
log = logging.getLogger(__name__ + '.ShowRole')
@@ -476,7 +476,7 @@ class ShowRole(show.ShowOne):
parser.add_argument(
'role',
metavar='<role>',
- help='Role to show (name or ID)',
+ help='Role to display (name or ID)',
)
return parser