git commit -a -mm

This commit is contained in:
Fabien Meghazi 2014-06-18 16:56:46 +02:00
parent 4c785069bc
commit fef8077df3
2 changed files with 3 additions and 5 deletions

View File

@ -104,7 +104,7 @@ class ir_http(osv.AbstractModel):
# check authentication level
try:
auth_method = self._authenticate(func.routing["auth"])
except Exception, e:
except Exception:
# force a Forbidden exception with the original traceback
return self._handle_exception(
convert_exception_to(

View File

@ -460,10 +460,8 @@ class HttpRequest(WebRequest):
be used as response."""
try:
return super(HttpRequest, self)._handle_exception(exception)
except Exception, e:
if isinstance(e, werkzeug.exceptions.HTTPException):
return e
raise
except werkzeug.exceptions.HTTPException, e:
return e
def dispatch(self):
# TODO: refactor this correctly. This is a quick fix for pos demo.