--- a/Project/ProjectFormsBrowser.py Mon Dec 27 19:49:16 2010 +0100 +++ b/Project/ProjectFormsBrowser.py Fri Dec 31 15:19:02 2010 +0100 @@ -644,7 +644,7 @@ args = [] self.buf = "" - if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python3"]: + if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python2", "Python3"]: if self.project.getProjectType() in ["Qt4", "E4Plugin"]: self.uicompiler = 'pyuic4' if Utilities.isWindowsPlatform(): @@ -674,7 +674,7 @@ ofn, ext = os.path.splitext(fn) fn = os.path.join(self.project.ppath, fn) - if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python3"]: + if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python2", "Python3"]: dirname, filename = os.path.split(ofn) self.compiledFile = os.path.join(dirname, "Ui_" + filename + ".py") args.append("-x") @@ -834,7 +834,8 @@ QApplication.processEvents() ifn = os.path.join(self.project.ppath, fn) - if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python3"]: + if self.project.pdata["PROGLANGUAGE"][0] in \ + ["Python", "Python2", "Python3"]: dirname, filename = os.path.split(os.path.splitext(ifn)[0]) ofn = os.path.join(dirname, "Ui_" + filename + ".py") elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby": @@ -900,4 +901,4 @@ "compileSelectedForms" : None, "generateDialogCode" : None, "newForm" : None, - } \ No newline at end of file + }