summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorwanghong <w.wanghong@huawei.com>2014-07-29 15:33:18 +0800
committerwanghong <w.wanghong@huawei.com>2014-07-29 15:37:24 +0800
commit81d11799c6fe6f09d0493755f2533d223ae13433 (patch)
tree9cf75d7cb1729371865b6de0e21cd824063ad4f6 /openstackclient
parent02cdebb007d6d9034115c91ef40c279a4fc590de (diff)
downloadpython-openstackclient-81d11799c6fe6f09d0493755f2533d223ae13433.tar.gz
fix typo in identity/v3/endpoint.py
Change-Id: Idf57a6a988f5c0f20f3b0b19ab896642ce10d70b
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