summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorColleen Murphy <colleen.murphy@suse.com>2020-01-21 15:08:46 -0800
committerColleen Murphy <colleen.murphy@suse.com>2020-01-21 15:08:46 -0800
commit99b0b073922fb64ca4d0f6a5c44a28bc339b4312 (patch)
tree2eb4b50d63b557ccbd5032f3f84dddbef4d075a6 /openstackclient
parent70ab3f9dd56a638cdff516ca85baa5ebd64c888b (diff)
downloadpython-openstackclient-99b0b073922fb64ca4d0f6a5c44a28bc339b4312.tar.gz
Fix copypaste errors in access rule command
Access rules are access rules, not application credentials. Change-Id: I74d05f11ec186283e5a86d92dcbfe4eb24130eee
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/identity/v3/access_rule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/identity/v3/access_rule.py b/openstackclient/identity/v3/access_rule.py
index d96b44da..65e78be1 100644
--- a/openstackclient/identity/v3/access_rule.py
+++ b/openstackclient/identity/v3/access_rule.py
@@ -38,7 +38,7 @@ class DeleteAccessRule(command.Command):
'access_rule',
metavar='<access-rule>',
nargs="+",
- help=_('Application credentials(s) to delete (name or ID)'),
+ help=_('Access rule(s) to delete (name or ID)'),
)
return parser
@@ -104,7 +104,7 @@ class ShowAccessRule(command.ShowOne):
parser.add_argument(
'access_rule',
metavar='<access-rule>',
- help=_('Application credential to display (name or ID)'),
+ help=_('Access rule to display (name or ID)'),
)
return parser