diff options
author | Frederick Muriuki Muriithi | 2024-08-05 12:08:21 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-05 12:08:21 -0500 |
commit | 1812cef20155324deafc10388f47045bc12696ab (patch) | |
tree | e62493e362badd18bfa438e82f4d9d06c62026d0 /uploader/templates/unhandled_exception.html | |
parent | 5bbe85e1b9a1c792af824db275bbe3a63fb9910b (diff) | |
download | gn-uploader-1812cef20155324deafc10388f47045bc12696ab.tar.gz |
Display the stack trace correctly on the template.
Diffstat (limited to 'uploader/templates/unhandled_exception.html')
-rw-r--r-- | uploader/templates/unhandled_exception.html | 2 |
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%} |