Commit ceecf0f7 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

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

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
parent 57981fb2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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):
    """