diff options
| author | wanghong <w.wanghong@huawei.com> | 2014-07-29 15:33:18 +0800 |
|---|---|---|
| committer | wanghong <w.wanghong@huawei.com> | 2014-07-29 15:37:24 +0800 |
| commit | 81d11799c6fe6f09d0493755f2533d223ae13433 (patch) | |
| tree | 9cf75d7cb1729371865b6de0e21cd824063ad4f6 /openstackclient | |
| parent | 02cdebb007d6d9034115c91ef40c279a4fc590de (diff) | |
| download | python-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.py | 8 |
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 |
