[FIX] Report: don't shallow exceptions in report_download

This commit is contained in:
Simon Lejeune 2014-12-12 15:18:48 +01:00
parent 8ef286a12c
commit 80bb4422be
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ class ReportController(Controller):
return response
else:
return
except osv.except_osv, e:
except Exception, e:
se = _serialize_exception(e)
error = {
'code': 200,