#998 closed defect (fixed)
Exception in views/debug.py
Description ¶
There's an error in the get_template_exception_info
function that causes the interpreter to raise an UnboundLocalError
in the marginal case that the template being debugged has only one line. This is caused by the before
, during
and after
variables not being assigned. This can be fixed by inserting the line
before = during = after = ""
...before the for
loop (line 26, django/views/debug.py).
This bug is present in revision 1550.
Note:
See TracTickets
for help on using tickets.
(In [1578]) Fixed #998 -- Fixed edge-case bug in debug view for templates with only one line. Thanks, andy@…