From e250f99b5b8ee0f6a9fc0bbb39ac588d7ab45799 Mon Sep 17 00:00:00 2001 From: Marek Denis Date: Fri, 19 Feb 2016 16:13:42 +0100 Subject: [PATCH] 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 --- keystoneauth1/identity/v3/oidc.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/keystoneauth1/identity/v3/oidc.py b/keystoneauth1/identity/v3/oidc.py index 5aa28f94..8b640f59 100644 --- a/keystoneauth1/identity/v3/oidc.py +++ b/keystoneauth1/identity/v3/oidc.py @@ -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,