summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-02-21 19:28:22 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-02-21 19:28:22 +0100
commitb69d66e4373082314d005c27e788818179d13723 (patch)
tree57aa39e48dd5ba97b90b673bbf65550dea14ffba
parent71f7b01ea7200a9a5786c76677ecd2ada1ff5d18 (diff)
downloadqutebrowser-b69d66e4373082314d005c27e788818179d13723.tar.gz
qutebrowser-b69d66e4373082314d005c27e788818179d13723.zip
Actually check for Qt 5.7.1
-rw-r--r--qutebrowser/misc/earlyinit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py
index 015e89851..4e6406591 100644
--- a/qutebrowser/misc/earlyinit.py
+++ b/qutebrowser/misc/earlyinit.py
@@ -270,7 +270,7 @@ def check_qt_version(backend):
"PyQt {} is installed.".format(qVersion(), PYQT_VERSION_STR))
_die(text)
elif (backend == 'webengine' and (
- qtutils.version_check('5.7.0', operator.lt) or
+ qtutils.version_check('5.7.1', operator.lt) or
PYQT_VERSION < 0x050700)):
text = ("Fatal error: Qt >= 5.7.1 and PyQt >= 5.7 are required for "
"QtWebEngine support, but Qt {} / PyQt {} is installed."