Opened 14 years ago

Closed 14 years ago

#12939 closed (duplicate)

fix for ExceptionReporter.get_traceback_html()

Reported by: skoom Owned by: nobody
Component: Template system Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

ExceptionReporter.get_traceback_html() checks if the exception has a 'source' attribute before running get_template_exception_info().

It should check the type of exception is TemplateSyntaxError as it says it does in the documentation.

It only checks if the exception has a 'source' attribute. I use mako templates and their compiler exception has a source value (which is a string) and the ExceptionReporter fails pulling this value into 3 values as it tries to on line 137 of views/debug.py.

Some of my template issues just show up as an error in debug.py at line 137.

Change History (4)

comment:1 by skoom, 14 years ago

Component: UncategorizedTemplate system
Version: 1.1SVN

comment:2 by skoom, 14 years ago

milestone: 1.2

comment:3 by skoom, 14 years ago

milestone: 1.2

comment:4 by Russell Keith-Magee, 14 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #10216

Note: See TracTickets for help on using tickets.
Back to Top