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
This commit is contained in:
Alvaro Lopez Garcia 2016-08-01 11:00:22 +02:00
parent cbd2e4021e
commit 31796b370f

View File

@ -24,6 +24,7 @@ from keystoneauth1.identity.v3 import federation
_logger = utils.get_logger(__name__)
__all__ = ('OidcAuthorizationCode',
'OidcClientCredentials',
'OidcPassword',
'OidcAccessToken')