Fix a typo in base.py

TrivialFix

Change-Id: I6e7ea9bafd59a0915d3f88df595a0653af2a0f1e
This commit is contained in:
melissaml 2016-11-17 23:10:23 +08:00
parent 6858ccdd0f
commit f2242de6fe
1 changed files with 2 additions and 2 deletions

View File

@ -26,9 +26,9 @@ LOG = utils.get_logger(__name__)
@six.add_metaclass(abc.ABCMeta)
class BaseGenericPlugin(base.BaseIdentityPlugin):
"""An identity plugin that is not version dependant.
"""An identity plugin that is not version dependent.
Internally we will construct a version dependant plugin with the resolved
Internally we will construct a version dependent plugin with the resolved
URL and then proxy all calls from the base plugin to the versioned one.
"""