diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2009-07-21 01:50:06 +0000 |
---|---|---|
committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-07-21 01:50:06 +0000 |
commit | bc5a7c0dbd05cf02d89d0f9913856a96e0a56b09 (patch) | |
tree | ed5d869833db9c3c1243a6e1bec93e8bb62abe40 /django/views | |
parent | 42ff5b3c1206553d82babce0c535ea6d6c20faa0 (diff) | |
download | django-bc5a7c0dbd05cf02d89d0f9913856a96e0a56b09.tar.gz |
Fixed #11512 -- Corrected unclosed tag in HTML on debug page. Thanks to rlaager for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11276 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/views')
-rw-r--r-- | django/views/debug.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/views/debug.py b/django/views/debug.py index 4e9dcb1d7c..6da89ffcf5 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -405,7 +405,7 @@ TECHNICAL_500_TEMPLATE = """ </tr> <tr> <th>Exception Value:</th> - <td><pre>{{ exception_value|escape }}<pre></td> + <td><pre>{{ exception_value|escape }}</pre></td> </tr> <tr> <th>Exception Location:</th> @@ -630,7 +630,7 @@ Exception Value: {{ exception_value|escape }} {% else %} <p>No FILES data</p> {% endif %} - + <h3 id="cookie-info">COOKIES</h3> {% if request.COOKIES %} |