# HG changeset patch # User Adrien Di Mascio # Date 1457449921 -3600 # Node ID 259fa3391c7bb57ff4ba94c5361cb73ad223cc70 # Parent 5b36399b6b210cea58be54154b06e69b8ab66a2d keep track of all traceback in error handling, not just the exception message (closes #11689093) diff -r 5b36399b6b21 -r 259fa3391c7b pyramid_cubicweb/bwcompat.py --- a/pyramid_cubicweb/bwcompat.py Wed Nov 25 12:32:59 2015 +0100 +++ b/pyramid_cubicweb/bwcompat.py Tue Mar 08 16:12:01 2016 +0100 @@ -138,6 +138,7 @@ else: try: req.data['ex'] = exc + req.data['excinfo'] = excinfo errview = vreg['views'].select('error', req) template = self.appli.main_template_id(req) content = vreg['views'].main_template(req, template, view=errview)