Fix osv_pool for instance

bzr revid: ced-9995be081efff7996864f7459e30894d5acb8cec
This commit is contained in:
ced 2006-12-11 09:35:06 +00:00
parent 29f810eb87
commit 3a7b523cc5
1 changed files with 2 additions and 2 deletions

View File

@ -49,10 +49,10 @@ class except_osv(Exception):
self.args = (exc_type,name)
class osv_pool(netsvc.Service):
obj_pool = {}
module_object_list = {}
def __init__(self):
self.obj_pool = {}
self.module_object_list = {}
self.created = []
self._sql_error = {}
netsvc.Service.__init__(self, 'object_proxy', audience='')