Changed 'Driver' reference to 'TokenDriverBase'

When building keystone docs, the following warning was being thrown:

keystone/doc/source/api/keystone.token.persistence.rst:26: WARNING:
missing attribute mentioned in :members: or __all__: module
keystone.token.persistence, attribute Driver

It appears that the 'Driver' reference was renamed multiple times but
wasn't updated in the __init__.py. This change updates the 'Driver'
reference to 'TokenDriverBase' and the warning no longer appears

Change-Id: I47ff617ee09097e7b0f0d2a2e4495cfc22a41fb9
Partial-Bug: #1602422
This commit is contained in:
Gage Hugo 2017-01-12 15:29:32 -06:00
parent f8ee249bf0
commit 9602807d9c
1 changed files with 1 additions and 1 deletions

View File

@ -13,4 +13,4 @@
from keystone.token.persistence.core import * # noqa
__all__ = ('Manager', 'Driver')
__all__ = ('Manager', 'TokenDriverBase')