summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-06-13 03:03:48 +0000
committerGerrit Code Review <review@openstack.org>2014-06-13 03:03:48 +0000
commitf92b3b7a4d86ccffd764e723ee8e8178490ce63a (patch)
tree66e642ea449c48331220d785e05dd62c182fafd2
parent9c45a795c496d66811db44dda7bb8b70427b4901 (diff)
parent8e9897adfc25c98ef12dbbac1b7f884647ae0768 (diff)
downloadpython-barbicanclient-f92b3b7a4d86ccffd764e723ee8e8178490ce63a.tar.gz
Merge "Move docstring inside relevant class"
-rw-r--r--barbicanclient/common/auth.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/barbicanclient/common/auth.py b/barbicanclient/common/auth.py
index 2944f28..508ca18 100644
--- a/barbicanclient/common/auth.py
+++ b/barbicanclient/common/auth.py
@@ -27,15 +27,13 @@ import six
LOG = logging.getLogger(__name__)
-"""
-This class is for backward compatibility only and is an
-adapter for using barbican style auth_plugin in place of
-the recommended keystone auth_plugin.
-"""
-
class KeystoneAuthPluginWrapper(BaseAuthPlugin):
-
+ """
+ This class is for backward compatibility only and is an
+ adapter for using barbican style auth_plugin in place of
+ the recommended keystone auth_plugin.
+ """
def __init__(self, barbican_auth_plugin):
self.barbican_auth_plugin = barbican_auth_plugin