31 @param project reference to the project object |
31 @param project reference to the project object |
32 (ProjectPyramid.Project.Project) |
32 (ProjectPyramid.Project.Project) |
33 @param projectPath path of the Pyramid project (string) |
33 @param projectPath path of the Pyramid project (string) |
34 @param parent reference to the parent widget (QWidget) |
34 @param parent reference to the parent widget (QWidget) |
35 """ |
35 """ |
36 super(DistributionTypeSelectionDialog, self).__init__(parent) |
36 super().__init__(parent) |
37 self.setupUi(self) |
37 self.setupUi(self) |
38 |
38 |
39 errMsg = "" |
39 errMsg = "" |
40 proc = QProcess() |
40 proc = QProcess() |
41 cmd = project.getPythonCommand() |
41 cmd = project.getPythonCommand() |