readd favicon

This commit is contained in:
Ben Harris 2023-08-25 17:10:01 -04:00
parent 468297ff49
commit e98dbd2bf2
2 changed files with 4 additions and 0 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -558,6 +558,10 @@ def robots():
Disallow: /
"""
@app.route("/favicon.ico")
def favicon():
return send_file("favicon.ico")
@app.errorhandler(400)
@app.errorhandler(401)
@app.errorhandler(404)