From b77ba57b7401630aa6853a946939eca8809e74e3 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 7 Jan 2020 14:44:20 +0000 Subject: [PATCH] Adjust formatting of error page. --- templates/show_error.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 %}