web/views/sessions.py
changeset 2887 1282dc6525c5
parent 2706 09baf5175196
child 4252 6c4f109c2b03
--- a/web/views/sessions.py	Mon Aug 17 19:21:26 2009 +0200
+++ b/web/views/sessions.py	Mon Aug 17 19:21:45 2009 +0200
@@ -15,8 +15,8 @@
 class InMemoryRepositorySessionManager(AbstractSessionManager):
     """manage session data associated to a session identifier"""
 
-    def __init__(self):
-        AbstractSessionManager.__init__(self)
+    def __init__(self, *args, **kwargs):
+        AbstractSessionManager.__init__(self, *args, **kwargs)
         # XXX require a RepositoryAuthenticationManager which violates
         #     authenticate interface by returning a session instead of a user
         #assert isinstance(self.authmanager, RepositoryAuthenticationManager)