summaryrefslogtreecommitdiff
path: root/django/views/debug.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/views/debug.py')
-rw-r--r--django/views/debug.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index 1eee80b9d6..5371af9f5c 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -23,14 +23,13 @@ def get_template_exception_info(exc_type, exc_value, tb):
upto = 0
source_lines = []
linebreaks = izip(count(0), linebreak_iter(template_source))
- linebreaks.next() # skip the nothing before initial line start
for num, next in linebreaks:
if start >= upto and end <= next:
line = num
before = escape(template_source[upto:start])
during = escape(template_source[start:end])
- after = escape(template_source[end:next - 1])
- source_lines.append( (num, escape(template_source[upto:next - 1])) )
+ after = escape(template_source[end:next])
+ source_lines.append( (num, escape(template_source[upto:next])) )
upto = next
total = len(source_lines)