aboutsummaryrefslogtreecommitdiff
path: root/uploader
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-08-05 12:08:21 -0500
committerFrederick Muriuki Muriithi2024-08-05 12:08:21 -0500
commit1812cef20155324deafc10388f47045bc12696ab (patch)
treee62493e362badd18bfa438e82f4d9d06c62026d0 /uploader
parent5bbe85e1b9a1c792af824db275bbe3a63fb9910b (diff)
downloadgn-uploader-1812cef20155324deafc10388f47045bc12696ab.tar.gz
Display the stack trace correctly on the template.
Diffstat (limited to 'uploader')
-rw-r--r--uploader/templates/unhandled_exception.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/templates/unhandled_exception.html b/uploader/templates/unhandled_exception.html
index d6087cb..cfb0c0b 100644
--- a/uploader/templates/unhandled_exception.html
+++ b/uploader/templates/unhandled_exception.html
@@ -18,7 +18,7 @@
</div>
<div class="row">
<pre>
- {{'\n'.join(trace).strip()}}
+ {{trace}}
</pre>
</div>
{%endblock%}