summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qutebrowser/utils/log.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/qutebrowser/utils/log.py b/qutebrowser/utils/log.py
index 7542dbd30..f2a6c396d 100644
--- a/qutebrowser/utils/log.py
+++ b/qutebrowser/utils/log.py
@@ -31,6 +31,9 @@ import argparse
from typing import (TYPE_CHECKING, Any, Iterator, Mapping, MutableSequence,
Optional, Set, Tuple, Union, TextIO, Literal, cast)
+# NOTE: This is a Qt-free zone! All imports related to Qt logging should be done in
+# qutebrowser.utils.qtlog (see https://github.com/qutebrowser/qutebrowser/issues/7769).
+
# Optional imports
try:
import colorama