cubicweb/pyramid/init_instance.py
author Denis Laxalde <denis.laxalde@logilab.fr>
Wed, 16 Nov 2016 17:12:09 +0100
branch3.24
changeset 11821 7534b32c45e3
parent 11631 faf279e33298
permissions -rw-r--r--
Fix (new) flake8 errors They showed up on upgrade of flake8/pep8.

from cubicweb.cwconfig import CubicWebConfiguration


def includeme(config):
    appid = config.registry.settings['cubicweb.instance']
    cwconfig = CubicWebConfiguration.config_for(appid)

    config.registry['cubicweb.config'] = cwconfig
    config.registry['cubicweb.repository'] = repo = cwconfig.repository()
    config.registry['cubicweb.registry'] = repo.vreg