[FIX] pep8

pull/2/head
Holger Brunn 2014-03-31 12:06:13 +02:00
parent 0db61caf20
commit c5187e5abc
3 changed files with 26 additions and 24 deletions

View File

@ -23,6 +23,7 @@ from openerp.addons.web.controllers import main as web_main
old_init = WebRequest.init
def init(self, params):
old_init(self, params)
if self.httprequest.authorization and not self.session._login:
@ -41,6 +42,7 @@ WebRequest.init = init
old_dispatch = JsonRequest.dispatch
def dispatch(self, method):
response = old_dispatch(self, method)
if method.im_func == web_main.Session.destroy.im_func: