diff --git a/atst/routes/errors.py b/atst/routes/errors.py index 5b6a2ff2..9d70578c 100644 --- a/atst/routes/errors.py +++ b/atst/routes/errors.py @@ -21,6 +21,9 @@ def make_error_pages(app): # pylint: disable=unused-variable def exception(e): app.logger.error(e.message) - return render_template("error.html", message="An Unexpected Error Occurred"), 500 + return ( + render_template("error.html", message="An Unexpected Error Occurred"), + 500, + ) return app