summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qutebrowser/utils/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py
index f83f838fe..a9de4bc00 100644
--- a/qutebrowser/utils/utils.py
+++ b/qutebrowser/utils/utils.py
@@ -341,7 +341,7 @@ class prevent_exceptions: # noqa: N801,N806 pylint: disable=invalid-name
"""Call the original function."""
try:
return func(*args, **kwargs)
- except BaseException:
+ except BaseException: # noqa: B036
log.misc.exception("Error in {}".format(qualname(func)))
return retval