aboutsummaryrefslogtreecommitdiffstats
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py4
1 files changed, 2 insertions, 2 deletions
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