diff options
-rwxr-xr-x | run.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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']) |