##// END OF EJS Templates
BUG: Include the name of the exception type in its pretty format....
Robert Kern -
Show More
@@ -628,7 +628,7 b' def _exception_pprint(obj, p, cycle):'
628 628 obj.__class__.__name__
629 629 )
630 630 step = len(name) + 1
631 p.begin_group(step, '(')
631 p.begin_group(step, name + '(')
632 632 for idx, arg in enumerate(getattr(obj, 'args', ())):
633 633 if idx:
634 634 p.text(',')
General Comments 0
You need to be logged in to leave comments. Login now