Merge "Promote an arbitrary string to be a docstring"

This commit is contained in:
Jenkins 2015-10-30 08:49:00 +00:00 committed by Gerrit Code Review
commit 50a2fa5c17
1 changed files with 11 additions and 9 deletions

View File

@ -12,15 +12,17 @@
from keystone.auth.plugins import mapped
""" Provide an entry point to authenticate with SAML2
This plugin subclasses mapped.Mapped, and may be specified in keystone.conf:
class Saml2(mapped.Mapped):
"""Provide an entry point to authenticate with SAML2.
This plugin subclasses ``mapped.Mapped``, and may be specified in
keystone.conf::
[auth]
methods = external,password,token,saml2
saml2 = keystone.auth.plugins.mapped.Mapped
"""
"""
class Saml2(mapped.Mapped):
pass