diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-07-21 02:09:06 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-07-21 02:09:06 +0000 |
| commit | dff276b9c1ce79e5c5a727970ad2951f4530e293 (patch) | |
| tree | a181e0a59f807c032544afd80f7d2269dd3ed7ae | |
| parent | 29b53b2b1c612107bb53c46782b3cbe5ac733910 (diff) | |
[1.0.X] Fixed #11512 -- Corrected unclosed tag in HTML on debug page. Thanks to rlaager for the report.
Merge of r11276 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11278 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/views/debug.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/views/debug.py b/django/views/debug.py index 4222baed69..95e65099b4 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -403,7 +403,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> @@ -608,6 +608,7 @@ Exception Value: {{ exception_value|escape }} <p>No POST data</p> {% endif %} + <h3 id="cookie-info">COOKIES</h3> {% if request.COOKIES %} <table class="req"> |
