repoapi.py
changeset 9813 c20956f5862d
parent 9774 b7b71be569cf
child 10087 ed0b076c119b
--- a/repoapi.py	Mon Jun 02 18:31:09 2014 +0200
+++ b/repoapi.py	Thu Jun 19 17:39:12 2014 +0200
@@ -148,6 +148,7 @@
     is_repo_in_memory = True # BC, always true
 
     def __init__(self, session, autoclose_session=False):
+        super(ClientConnection, self).__init__(session.vreg)
         self._session = session # XXX there is no real reason to keep the
                                 # session around function still using it should
                                 # be rewritten and migrated.
@@ -156,7 +157,6 @@
         self._web_request = False
         #: cache entities built during the connection
         self._eid_cache = {}
-        self.vreg = session.vreg
         self._set_user(session.user)
         self._autoclose_session = autoclose_session