diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-17 04:27:36 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-17 04:27:36 +0000 |
| commit | 15f8b4cde07199bc6d14402b0a4b417d20a227e5 (patch) | |
| tree | 5172ebb761ea47ed7562b898f01d94112070428c | |
| parent | 260510453f25c0ab00254a9efdd7bea35ecdcee6 (diff) | |
Fixed #8178: Another update to debug template to aid rendering of exception traces. Thanks to julianb for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8420 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/views/debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/debug.py b/django/views/debug.py index 7cd05ea913..72631b35a7 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>{{ exception_value|escape }}</td> + <td><pre>{{ exception_value|escape }}<pre></td> </tr> <tr> <th>Exception Location:</th> |
