diff options
Diffstat (limited to 'kcc.py')
-rwxr-xr-x | kcc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcc.py b/kcc.py index ffc0fbb..7cac49c 100755 --- a/kcc.py +++ b/kcc.py @@ -33,10 +33,10 @@ missing = [] try: # noinspection PyUnresolvedReferences from PyQt5 import QtCore, QtNetwork, QtWidgets - if tuple(map(int, ('5.2.1'.split(".")))) > tuple(map(int, (QtCore.qVersion().split(".")))): - missing.append('PyQt5 5.2.1+') + if tuple(map(int, ('5.2.0'.split(".")))) > tuple(map(int, (QtCore.qVersion().split(".")))): + missing.append('PyQt5 5.2.0+') except ImportError: - missing.append('PyQt5 5.2.1+') + missing.append('PyQt5 5.2.0+') try: # noinspection PyUnresolvedReferences import psutil |