# HG changeset patch # User Sylvain Thénault # Date 1304513727 -7200 # Node ID 1f97c05cfbab992fb6458873fb00fbee92a026cc # Parent 7e7b44406cb10f88a1887fba8299024904d35739 [repository quick start] should modify class attribute to get this actually working (used by a classmethod) diff -r 7e7b44406cb1 -r 1f97c05cfbab server/repository.py --- a/server/repository.py Wed May 04 12:24:41 2011 +0200 +++ b/server/repository.py Wed May 04 14:55:27 2011 +0200 @@ -178,8 +178,8 @@ # information (eg dump/restore/...) config._cubes = () # only load hooks and entity classes in the registry - config.cube_appobject_path = set(('hooks', 'entities')) - config.cubicweb_appobject_path = set(('hooks', 'entities')) + config.__class__.cube_appobject_path = set(('hooks', 'entities')) + config.__class__.cubicweb_appobject_path = set(('hooks', 'entities')) self.set_schema(config.load_schema()) config['connections-pool-size'] = 1 # will be reinitialized later from cubes found in the database