From 720ca58cd4feb2f3b6e463493291c94a9fdd9548 Mon Sep 17 00:00:00 2001 From: JoeBanks13 Date: Sun, 4 Feb 2018 17:27:05 +0000 Subject: Merged stuff --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app.py') diff --git a/app.py b/app.py index 0ef2605f..cdc0e6c2 100644 --- a/app.py +++ b/app.py @@ -22,12 +22,12 @@ def invite(): return redirect("https://invite.pythondiscord.com/") @app.route("/healthcheck") -def _healthcheck(): +def healthcheck(): return jsonify({"status":"ok"}) @app.errorhandler(404) -def _page_not_found(e): +def page_not_found(e): return "replace me with a template, 404 not found", 404 -- cgit v1.2.3