summaryrefslogtreecommitdiff
path: root/qutebrowser/browser/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/browser/shared.py')
-rw-r--r--qutebrowser/browser/shared.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/qutebrowser/browser/shared.py b/qutebrowser/browser/shared.py
index 0c49f373b..26ea02a13 100644
--- a/qutebrowser/browser/shared.py
+++ b/qutebrowser/browser/shared.py
@@ -191,8 +191,8 @@ def ignore_certificate_error(
# We get the first party URL with a heuristic - with HTTP -> HTTPS redirects, the
# scheme might not match.
is_resource = first_party_url.isValid() and not request_url.matches(
- first_party_url, QtCore.QUrl.RemoveScheme
- ) # type: ignore[arg-type]
+ first_party_url, QtCore.QUrl.RemoveScheme # type: ignore[arg-type]
+ )
if conf == 'ask' or conf == 'ask-block-thirdparty' and not is_resource:
err_template = jinja.environment.from_string("""
@@ -222,9 +222,10 @@ def ignore_certificate_error(
error=error,
)
+ qurl = QtCore.QUrl
urlstr = request_url.toString(
- QtCore.QUrl.RemovePassword | QtCore.QUrl.FullyEncoded
- ) # type: ignore[arg-type]
+ qurl.RemovePassword | qurl.FullyEncoded # type: ignore[arg-type]
+ )
ignore = message.ask(
title="Certificate error",
text=msg,