summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'])