From a4d22e9bd9526bc9a8bd7f3abf7dabb214dded90 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 17 Aug 2023 18:51:45 +0200 Subject: Fixup OpenSSL warning hint --- qutebrowser/misc/backendproblem.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qutebrowser/misc/backendproblem.py b/qutebrowser/misc/backendproblem.py index d4b9b42fe..51d3a35c3 100644 --- a/qutebrowser/misc/backendproblem.py +++ b/qutebrowser/misc/backendproblem.py @@ -236,10 +236,10 @@ class _BackendProblemChecker: # Doing this here because it's not relevant with QtWebKit where fatal=True if machinery.IS_QT6: - text = ("\nHint: If installed via mkvenv.py on a system without " - "OpenSSL 3.x (e.g. Ubuntu 20.04), you can use --pyqt-version 6.4 " - "to get an older Qt still compatible with OpenSSL 1.1 (at the " - "expense of running an older QtWebEngine/Chromium)") + text += ("\nHint: If installed via mkvenv.py on a system without " + "OpenSSL 3.x (e.g. Ubuntu 20.04), you can use --pyqt-version 6.4 " + "to get an older Qt still compatible with OpenSSL 1.1 (at the " + "expense of running an older QtWebEngine/Chromium)") assert not fatal log.init.warning(text) -- cgit v1.2.3-54-g00ecf