diff --git a/templates/show_error.html b/templates/show_error.html index a9159d0..bdec171 100644 --- a/templates/show_error.html +++ b/templates/show_error.html @@ -10,11 +10,6 @@

Software error: {{ tb.exception_type }}

{{ tb.exception }}
- -

Error in function "{{ tb.frames[-1].function_name }}"
- {{ last_frame_args | pprint }}
- locals: {{ last_frame.locals | pprint }} -

{% set body %} @@ -27,6 +22,9 @@ URL: {{ request.url }}

Traceback (most recent call last)

{{ tb.render_summary(include_title=False) | safe }} + +

Error in function "{{ tb.frames[-1].function_name }}": {{ last_frame_args | pprint }}

+
{{ last_frame.locals | pprint }}
{% endblock %}