From 31796b370f5dbcb322dc82a107051c4c58a6af2f Mon Sep 17 00:00:00 2001 From: Alvaro Lopez Garcia Date: Mon, 1 Aug 2016 11:00:22 +0200 Subject: [PATCH] Add missing class name to tuple of public objects The class name OidcClientCredentials is missing in the __all__ list of public objects from keystoneauth1/identity/v3/oidc.py, therefore it couldn't be loaded. Change-Id: Ife9f58f14d31863904673c962c06cc1d3df4b49d Closes-bug: #1608419 --- keystoneauth1/identity/v3/oidc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/keystoneauth1/identity/v3/oidc.py b/keystoneauth1/identity/v3/oidc.py index a99b9b10..d8115ae9 100644 --- a/keystoneauth1/identity/v3/oidc.py +++ b/keystoneauth1/identity/v3/oidc.py @@ -24,6 +24,7 @@ from keystoneauth1.identity.v3 import federation _logger = utils.get_logger(__name__) __all__ = ('OidcAuthorizationCode', + 'OidcClientCredentials', 'OidcPassword', 'OidcAccessToken')