diff --git a/scripts/install-qt.py b/scripts/install-qt.py index feecaf0f..19350a4a 100644 --- a/scripts/install-qt.py +++ b/scripts/install-qt.py @@ -42,15 +42,6 @@ def fix_registry(python_ver): subprocess.check_call([installer, '/S']) python = caption.split('-')[0] assert python[:2] == 'py' - # debug - for ver in ('27', '34'): - path = r'C:\Python%s\Lib\site-packages' % ver - print('DEBUG', '-' * 80) - print('PATH', path) - for x in os.listdir(path): - print(' ', x) - print('DEBUG', '-' * 80) - # debug executable = r'C:\Python%s\python.exe' % python[2:] module = url.split('/')[0] cmdline = [executable, '-c', 'import %s;print(%s)' % (module, module)]