Commit d5377fc8 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Fixed #2153 -- display debugging template even if no stack frame is found.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@3127 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent ed1dcbf3
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -111,6 +111,12 @@ def technical_500_response(request, exc_type, exc_value, tb):
            })
        tb = tb.tb_next

    if not frames:
        frames = [{
            'filename': '<unknown>',
            'function': '?',
            'lineno': '?',
        }]
    t = Template(TECHNICAL_500_TEMPLATE)
    c = Context({
        'exception_type': exc_type.__name__,