Show More
@@ -261,7 +261,10 b' def includeme(config):' | |||
|
261 | 261 | webob_to_pyramid_http_response(response), request) |
|
262 | 262 | except HTTPError as e: # pyramid type exceptions |
|
263 | 263 | return error_handler(e, request) |
|
264 | ||
|
264 | except Exception: | |
|
265 | if settings.get('debugtoolbar.enabled', False): | |
|
266 | raise | |
|
267 | return error_handler(HTTPInternalServerError(), request) | |
|
265 | 268 | return response |
|
266 | 269 | |
|
267 | 270 | # This is the glue which allows us to migrate in chunks. By registering the |
General Comments 0
You need to be logged in to leave comments.
Login now