summaryrefslogtreecommitdiffstats
path: root/run.py
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-06-17 09:00:52 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2016-06-17 09:00:52 +0100
commit25778cf0d737b3d3e19c1bff7a5f7e602221bd9f (patch)
tree475e0841c0cd4210b7454a0c16dfcf76e84d7b5a /run.py
parenteb60561041d37f09226a55fae3bc30048750abd9 (diff)
downloadznc-log-viewer-25778cf0d737b3d3e19c1bff7a5f7e602221bd9f.tar.xz
No favicon!
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'run.py')
-rwxr-xr-xrun.py4
1 files changed, 4 insertions, 0 deletions
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'])