summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/help/configuring.asciidoc1
-rw-r--r--tests/end2end/fixtures/webserver_sub_ssl.py7
2 files changed, 1 insertions, 7 deletions
diff --git a/doc/help/configuring.asciidoc b/doc/help/configuring.asciidoc
index 9dba112d0..d61743040 100644
--- a/doc/help/configuring.asciidoc
+++ b/doc/help/configuring.asciidoc
@@ -415,6 +415,7 @@ Pre-built colorschemes
- https://www.opencode.net/wakellor957/qb-breath/-/blob/main/qb-breath.py[Manjaro Breath-like]
- https://github.com/gicrisf/qute-city-lights[City Lights (matte dark)]
- https://github.com/catppuccin/qutebrowser[Catppuccin]
+- https://github.com/iruzo/matrix-qutebrowser[Matrix]
Avoiding flake8 errors
^^^^^^^^^^^^^^^^^^^^^^
diff --git a/tests/end2end/fixtures/webserver_sub_ssl.py b/tests/end2end/fixtures/webserver_sub_ssl.py
index d628c37b9..cbe7004ad 100644
--- a/tests/end2end/fixtures/webserver_sub_ssl.py
+++ b/tests/end2end/fixtures/webserver_sub_ssl.py
@@ -23,7 +23,6 @@ This script gets called as a QProcess from end2end/conftest.py.
"""
import sys
-import logging
import flask
@@ -62,12 +61,6 @@ def log_request(response):
return webserver_sub.log_request(response)
-@app.before_first_request
-def turn_off_logging():
- # Turn off werkzeug logging after the startup message has been printed.
- logging.getLogger('werkzeug').setLevel(logging.ERROR)
-
-
def main():
port = int(sys.argv[1])
server = webserver_sub.WSGIServer(('127.0.0.1', port), app)