From 1559de125cd41a2cac4f9b32eeb7cdd8186ca7e6 Mon Sep 17 00:00:00 2001 From: justcool393 Date: Tue, 15 Nov 2022 23:36:56 -0600 Subject: [PATCH] add error handler --- files/routes/errors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/routes/errors.py b/files/routes/errors.py index 56c9afdd9..49a549ff4 100644 --- a/files/routes/errors.py +++ b/files/routes/errors.py @@ -19,6 +19,7 @@ from files.__main__ import app @app.errorhandler(405) @app.errorhandler(406) @app.errorhandler(409) +@app.errorhandler(410) @app.errorhandler(413) @app.errorhandler(415) @app.errorhandler(418)