diff -r c1d33aff7715 -r f87cd875c6db web/views/sessions.py --- a/web/views/sessions.py Wed Jan 19 12:47:04 2011 +0100 +++ b/web/views/sessions.py Wed Jan 19 12:47:06 2011 +0100 @@ -69,8 +69,8 @@ raise :exc:`cubicweb.AuthenticationError` if authentication failed (no authentication info found or wrong user/password) """ - cnx, login, authinfo = self.authmanager.authenticate(req) - session = DBAPISession(cnx, login, authinfo) + cnx, login = self.authmanager.authenticate(req) + session = DBAPISession(cnx, login) self._sessions[session.sessionid] = session # associate the connection to the current request req.set_session(session)