Fixed #874 -- Changed debug views to use text/html mime-type instead of DEFAULT_CONTENT_TYPE. Thanks, Sune

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1351 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-11-22 14:22:02 +00:00
parent 57981fb2fa
commit ceecf0f7de
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ def technical_500_response(request, exc_type, exc_value, tb):
'settings' : settings_dict,
})
return HttpResponseServerError(t.render(c))
return HttpResponseServerError(t.render(c), mimetype='text/html')
def technical_404_response(request, exception):
"""
@ -76,7 +76,7 @@ def technical_404_response(request, exception):
'request_protocol' : os.environ.get("HTTPS") == "on" and "https" or "http",
'settings' : dict([(k, getattr(settings, k)) for k in dir(settings) if k.isupper()]),
})
return HttpResponseNotFound(t.render(c))
return HttpResponseNotFound(t.render(c), mimetype='text/html')
def _get_lines_from_file(filename, lineno, context_lines):
"""