diff -r f606dbe20be6 -r 000ea446ff4b Preferences/ConfigurationPages/HelpViewersPage.py --- a/Preferences/ConfigurationPages/HelpViewersPage.py Sat May 13 13:46:05 2017 +0200 +++ b/Preferences/ConfigurationPages/HelpViewersPage.py Sat May 13 16:32:54 2017 +0200 @@ -9,14 +9,15 @@ from __future__ import unicode_literals -from PyQt5.QtCore import qVersion from PyQt5.QtWidgets import QButtonGroup try: from PyQt5 import QtWebKit # __IGNORE_WARNING__ WEBKIT_AVAILABLE = True except ImportError: WEBKIT_AVAILABLE = False -if qVersion() < "5.6.0": + +from Globals import qVersionTuple +if qVersionTuple() < (5, 6, 0): WEBENGINE_AVAILABLE = False else: try: