fix typo in identity/v3/endpoint.py

Change-Id: Idf57a6a988f5c0f20f3b0b19ab896642ce10d70b
This commit is contained in:
wanghong 2014-07-29 15:33:18 +08:00
parent 02cdebb007
commit 81d11799c6

View File

@ -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