From 0fc057c486f9e4ae122a1a53bca9e4f055c11004 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 22 May 2007 08:28:06 +0000 Subject: [PATCH] unicode: Fixed two bozo errors in [5315]. Even tested it this time. git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5316 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/debug.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/views/debug.py b/django/views/debug.py index 1a02c074ca..07a9fd9cee 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -2,6 +2,7 @@ from django.conf import settings from django.template import Template, Context, TemplateDoesNotExist from django.utils.html import escape from django.http import HttpResponseServerError, HttpResponseNotFound +from django.utils.encoding import smart_unicode import os, re HIDDEN_SETTINGS = re.compile('SECRET|PASSWORD|PROFANITIES_LIST') @@ -125,7 +126,7 @@ def technical_500_response(request, exc_type, exc_value, tb): t = Template(TECHNICAL_500_TEMPLATE, name='Technical 500 template') c = Context({ 'exception_type': exc_type.__name__, - 'exception_value': smart_unicode(exc_value, errors='replace') + 'exception_value': smart_unicode(exc_value, errors='replace'), 'frames': frames, 'lastframe': frames[-1], 'request': request,