From 25778cf0d737b3d3e19c1bff7a5f7e602221bd9f Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Fri, 17 Jun 2016 09:00:52 +0100 Subject: No favicon! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- run.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run.py b/run.py index 4e44325..c89040f 100755 --- a/run.py +++ b/run.py @@ -108,5 +108,9 @@ def authenticated(): else: return True +@app.route('/favicon.ico') +def favicon(): + return abort(404) + if __name__ == '__main__': app.run(port=app.config['PORT']) -- cgit v1.2.3-54-g00ecf