summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/identity/v3/endpoint.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/identity/v3/endpoint.py b/openstackclient/identity/v3/endpoint.py
index 93d77be3..fa1b8628 100644
--- a/openstackclient/identity/v3/endpoint.py
+++ b/openstackclient/identity/v3/endpoint.py
@@ -57,13 +57,13 @@ class CreateEndpoint(show.ShowOne):
dest='enabled',
action='store_true',
default=True,
- help='Enable user',
+ help='Enable endpoint',
)
enable_group.add_argument(
'--disable',
dest='enabled',
action='store_false',
- help='Disable user',
+ help='Disable endpoint',
)
return parser
@@ -166,13 +166,13 @@ class SetEndpoint(command.Command):
dest='enabled',
action='store_true',
default=True,
- help='Enable user',
+ help='Enable endpoint',
)
enable_group.add_argument(
'--disable',
dest='enabled',
action='store_false',
- help='Disable user',
+ help='Disable endpoint',
)
return parser