ProjectPyramid/CreateParametersDialog.py

changeset 19
f4adfe6e51b0
parent 2
e691c51ab655
child 34
d20f7218d53c
equal deleted inserted replaced
18:c27d4435675a 19:f4adfe6e51b0
99 @return tuple giving the scaffold (string), the project name (string), 99 @return tuple giving the scaffold (string), the project name (string),
100 a flag indicating to overwrite existing files (boolean) and a flag 100 a flag indicating to overwrite existing files (boolean) and a flag
101 indicating to simulate the creation (boolean) 101 indicating to simulate the creation (boolean)
102 """ 102 """
103 return ( 103 return (
104 self.scaffoldCombo.currentText().split(":")[0], 104 self.scaffoldCombo.currentText().split(":")[0],
105 self.nameEdit.text(), 105 self.nameEdit.text(),
106 self.overwriteCheckBox.isChecked(), 106 self.overwriteCheckBox.isChecked(),
107 self.simulateCheckBox.isChecked() 107 self.simulateCheckBox.isChecked()
108 ) 108 )

eric ide

mercurial