diff -r 2e03bb4372b2 -r f09efeead7f9 cubicweb/pyramid/core.py --- a/cubicweb/pyramid/core.py Tue Jun 30 10:00:53 2015 +0200 +++ b/cubicweb/pyramid/core.py Wed Nov 09 11:42:33 2016 +0100 @@ -7,7 +7,6 @@ import rql from cubicweb.web.request import CubicWebRequestBase -from cubicweb import repoapi import cubicweb import cubicweb.web @@ -29,6 +28,7 @@ This behavior makes sure the actual session data is not loaded until actually accessed. """ + def __init__(self, session, *args, **kw): super(Connection, self).__init__(session, *args, **kw) self._session = session @@ -277,9 +277,9 @@ tools.cnx_attach_entity(session, user) # Calling the hooks should be done only once, disabling it completely for # now - #with session.new_cnx() as cnx: - #repo.hm.call_hooks('session_open', cnx) - #cnx.commit() + # with session.new_cnx() as cnx: + # repo.hm.call_hooks('session_open', cnx) + # cnx.commit() # repo._sessions[session.sessionid] = session return session