Fix docstring in identity.v3.oidc module

Docstring for ``_OidcBase._get_keystone_token`` was inconsistent with
the arguments passed to the method.

Change-Id: I19c97d4b60e18abf95d0d55ae73348d973deec88
This commit is contained in:
Marek Denis 2016-02-19 16:13:42 +01:00
parent 787c4d12dd
commit e250f99b5b
1 changed files with 5 additions and 5 deletions

View File

@ -117,11 +117,11 @@ class _OidcBase(federation.FederationBaseAuth):
:param headers: an Authorization header containing the access token.
:type headers_: dict
:param federated_auth_url: Protected URL for federated authentication,
for example: https://localhost:5000/v3/\
OS-FEDERATION/identity_providers/bluepages/\
protocols/oidc/auth
:type federated_auth_url: string
:param federated_token_url: Protected URL for federated authentication,
for example: https://localhost:5000/v3/\
OS-FEDERATION/identity_providers/bluepages/\
protocols/oidc/auth
:type federated_token_url: string
"""
auth_response = session.post(self.federated_token_url,
headers=headers,