From: Michael Tremer Date: Fri, 27 Oct 2017 15:58:31 +0000 (+0100) Subject: Don't add too many newlines to tracebacks X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cde275f806334255d001c7e0cd2f6300b87f672;p=pbs.git Don't add too many newlines to tracebacks Signed-off-by: Michael Tremer --- diff --git a/src/templates/errors/error.html b/src/templates/errors/error.html index 892acea0..ab90f74b 100644 --- a/src/templates/errors/error.html +++ b/src/templates/errors/error.html @@ -37,7 +37,7 @@ {{ _("Exception (traceback):") }}

-
{{ "\n".join(tb) }}
+
{{ "".join(tb) }}
{% end %}