diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-06-17 09:00:52 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-06-17 09:00:52 +0100 |
commit | 25778cf0d737b3d3e19c1bff7a5f7e602221bd9f (patch) | |
tree | 475e0841c0cd4210b7454a0c16dfcf76e84d7b5a | |
parent | eb60561041d37f09226a55fae3bc30048750abd9 (diff) | |
download | znc-log-viewer-25778cf0d737b3d3e19c1bff7a5f7e602221bd9f.tar.xz |
No favicon!
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-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']) |