summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2024-01-22 09:53:55 +0100
committerFlorian Bruhin <me@the-compiler.org>2024-01-22 09:53:55 +0100
commit5456a4153a62d470718f45ab665e319f0bbb2383 (patch)
tree360ca300a83c9298afdd515d6002d9e7495abb75
parent8afe1535640ad53bc1ea80f22a14d0ef66656f76 (diff)
downloadqutebrowser-5456a4153a62d470718f45ab665e319f0bbb2383.tar.gz
qutebrowser-5456a4153a62d470718f45ab665e319f0bbb2383.zip
Update flake8 ignores
-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