aboutsummaryrefslogtreecommitdiffstats
path: root/error_handlers/http_404.py
diff options
context:
space:
mode:
authorGravatar martmists <[email protected]>2018-02-05 20:26:54 +0100
committerGravatar martmists <[email protected]>2018-02-05 20:26:54 +0100
commit80a1ab522e7a49f3ea1168d8658fbff293c866f1 (patch)
tree206a45b1a68c273db43ad04b105bcd3e7c48f565 /error_handlers/http_404.py
parentDynamic route loader; proper application structure (diff)
Major update
- Switch to Japronto - More linters - Rewrite route handling - Rewrite error handling - Rewrite static handling - Error when no `Index` propery is found - Probably some more stuff? idk Code needs testing; Maybe we could use pytest? Signed-off-by: martmists <[email protected]>
Diffstat (limited to 'error_handlers/http_404.py')
-rw-r--r--error_handlers/http_404.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/error_handlers/http_404.py b/error_handlers/http_404.py
new file mode 100644
index 00000000..712bf748
--- /dev/null
+++ b/error_handlers/http_404.py
@@ -0,0 +1,8 @@
+# coding=utf-8
+
+
+class Index:
+ error_code = 404
+
+ def err(self, req):
+ return req.Response(text="Page not found!", code=404)