Fix a little bug with the output_filters list overload

git-svn-id: svn+ssh://labs.libre-entreprise.org/svnroot/larpe@490 3ed937ae-f919-0410-9a43-8e6f19e4ba6e
This commit is contained in:
jschneider 2009-10-20 14:27:52 +00:00
parent 3d0cfe2509
commit 439f900665
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from larpe.plugins import site_authentication_plugins
from larpe.site_authentication import SiteAuthentication
class CirilSiteAuthentication(SiteAuthentication):
plugin_name = 'ciril'
output_filters = ['output_ciril_net_rh']

View File

@ -27,9 +27,10 @@ from federations import Federation
class SiteAuthentication:
output_filters = []
def __init__(self, host):
self.host = host
self.output_filters = []
def federate(self, username, password, provider_id, cookies, select):
user = get_session().get_user(provider_id)