--- a/Utilities/uic.py Sun Jun 29 14:00:30 2014 +0200 +++ b/Utilities/uic.py Sun Jun 29 20:13:56 2014 +0200 @@ -22,9 +22,9 @@ @param recurse flag indicating to recurse into subdirectories (boolean) """ # __IGNORE_WARNING__ try: - from PyQt4.uic import compileUiDir + from PyQt5.uic import compileUiDir except ImportError: - from PyQt4.uic import compileUi + from PyQt5.uic import compileUi def compileUiDir(dir, recurse=False, # __IGNORE_WARNING__ map=None, **compileUi_args): @@ -33,7 +33,7 @@ directory tree. Note: This function is a modified version of the one found in - PyQt4. + PyQt5. @param dir Name of the directory to scan for files whose name ends with '.ui'. By default the generated Python module is created