diff options
-rwxr-xr-x | pasteme.py | 10 | ||||
-rw-r--r-- | views/bad_request.tpl (renamed from views/internal_error.tpl) | 4 |
2 files changed, 7 insertions, 7 deletions
@@ -25,10 +25,10 @@ def route_paste_post(): pid = identigen.generate(content) except AttributeError as e: print(e) - bottle.abort(500) + bottle.abort(400) path = pathbase / pid with path.open(mode='wb') as fd: - fd.write(content.encode('utf8')) + fd.write(content.encode('utf8')) bottle.redirect('/' + pid) @bottle.route('/static/<path:path>') @@ -60,9 +60,9 @@ def route_paste_get(pid, pformat='colored'): def error404(error): return bottle.template("not_found") -@bottle.error(500) -def error500(error): - return bottle.template("internal_error") +@bottle.error(400) +def error400(error): + return bottle.template("bad_request") if __name__ == '__main__': print('I: Starting application with development server') diff --git a/views/internal_error.tpl b/views/bad_request.tpl index 804ade3..e21eddc 100644 --- a/views/internal_error.tpl +++ b/views/bad_request.tpl @@ -1,10 +1,10 @@ <html> <head> -<title>Internal Server Error (500)</title> +<title>Bad request (400)</title> </head> <body> <h2>Hello</h2> -<p>Your request generated a server error.</p> +<p>I don't know how to manage your request.</p> <p>If you think that your request was valid, please report this issue</p> |