From fc760dd0d03a07bf0c5833d93b3bcd7566a12e66 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 24 Mar 2014 10:30:38 +0100 Subject: [PATCH] [FIX] web: no need to initialize wsgi handler in postload anymore bzr revid: chs@openerp.com-20140324093038-3nguocje3lia03jp --- addons/web/__init__.py | 2 -- addons/web/__openerp__.py | 1 - 2 files changed, 3 deletions(-) diff --git a/addons/web/__init__.py b/addons/web/__init__.py index 8f0b06e4662..71b16f2ea19 100644 --- a/addons/web/__init__.py +++ b/addons/web/__init__.py @@ -6,5 +6,3 @@ sys.modules['openerp.addons.web.http'] = openerp.http http = openerp.http import controllers - -wsgi_postload = http.wsgi_postload diff --git a/addons/web/__openerp__.py b/addons/web/__openerp__.py index f1d7d7511c7..2855441bf6b 100644 --- a/addons/web/__openerp__.py +++ b/addons/web/__openerp__.py @@ -11,7 +11,6 @@ This module provides the core of the OpenERP Web Client. """, 'depends': ['base'], 'auto_install': True, - 'post_load': 'wsgi_postload', 'data': [ 'views/webclient_templates.xml', ],