Fixed #998 -- Fixed edge-case bug in debug view for templates with only one line. Thanks, andy@jadedplanet.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1578 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
99f0f414d5
commit
d06a12406b
1
AUTHORS
1
AUTHORS
|
@ -37,6 +37,7 @@ answer newbie questions, and generally made Django that much better:
|
||||||
Paul Bissex <http://e-scribe.com/>
|
Paul Bissex <http://e-scribe.com/>
|
||||||
Simon Blanchard
|
Simon Blanchard
|
||||||
Andrew Brehaut <http://brehaut.net/blog>
|
Andrew Brehaut <http://brehaut.net/blog>
|
||||||
|
andy@jadedplanet.net
|
||||||
Antonio Cavedoni <http://cavedoni.com/>
|
Antonio Cavedoni <http://cavedoni.com/>
|
||||||
C8E
|
C8E
|
||||||
Amit Chakradeo <http://amit.chakradeo.net/>
|
Amit Chakradeo <http://amit.chakradeo.net/>
|
||||||
|
|
|
@ -23,6 +23,7 @@ def get_template_exception_info(exc_type, exc_value, tb):
|
||||||
line = 0
|
line = 0
|
||||||
upto = 0
|
upto = 0
|
||||||
source_lines = []
|
source_lines = []
|
||||||
|
before = during = after = ""
|
||||||
for num, next in enumerate(linebreak_iter(template_source)):
|
for num, next in enumerate(linebreak_iter(template_source)):
|
||||||
if start >= upto and end <= next:
|
if start >= upto and end <= next:
|
||||||
line = num
|
line = num
|
||||||
|
|
Loading…
Reference in New Issue