summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2016-07-22 17:38:35 -0700
committerMarkus Holtermann <info@markusholtermann.eu>2016-07-24 18:29:01 +0200
commitcaec27f87c56442d4512cb6dd9e6c26fd8d4414a (patch)
treec1e58f3eb690eda55d656490e8aab59ba6a4441b /django
parent1152c9b7954ede3b60dc6cbad6565ba21c4d7e96 (diff)
[1.9.x] Fixed #26938 -- Fixed invalid HTML in template postmortem on the debug page.
Backport of 348cfccd9072f0e08ffe4cfb3946d1dc6a629e86 from master
Diffstat (limited to 'django')
-rw-r--r--django/views/debug.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index 2629d345eb..a34962dce8 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -721,7 +721,6 @@ TECHNICAL_500_TEMPLATE = ("""
{% for attempt in entry.tried %}
<li><code>{{ attempt.0.loader_name }}</code>: {{ attempt.0.name }} ({{ attempt.1 }})</li>
{% endfor %}
- </ul>
{% else %}
<li>This engine did not provide a list of tried templates.</li>
{% endif %}