diff -r 30ba1d9bd841 -r 6a496f0886ad install-debugclients.py --- a/install-debugclients.py Sat Jun 23 15:29:15 2018 +0200 +++ b/install-debugclients.py Sat Jun 23 17:59:11 2018 +0200 @@ -14,7 +14,10 @@ from __future__ import unicode_literals, print_function try: import cStringIO as io - import sip + try: + import sip + except ImportError: + from PyQt5 import sip sip.setapi('QString', 2) sip.setapi('QVariant', 2) sip.setapi('QTextStream', 2)