diff options
author | BonfaceKilz | 2021-09-27 13:09:24 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-09-27 13:22:01 +0300 |
commit | 16947a15bd955be7da45bb5f078870649b1b63e5 (patch) | |
tree | 64bbf83098450d057ec85691541dec19830da409 /wqflask | |
parent | 8135bd22898130ae6f58aa74cb80c83ab334d0d4 (diff) | |
download | genenetwork2-16947a15bd955be7da45bb5f078870649b1b63e5.tar.gz |
Apply pep-8 formatting
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index 007b0f9e..b297da08 100644 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -188,7 +188,9 @@ def handle_generic_exceptions(e): "./wqflask/static/gif/error") if fn.endswith(".gif")]) resp = make_response(render_template("error.html", message=err_msg, - stack=formatted_lines, error_image=animation, version=GN_VERSION)) + stack=formatted_lines, + error_image=animation, + version=GN_VERSION)) # logger.error("Set cookie %s with %s" % (err_msg, animation)) resp.set_cookie(err_msg[:32], animation) |