Debugger/StartDialog.py

changeset 6720
ba02b7a62dbc
parent 6645
ad476851d7e0
child 6891
93f82da09f22
equal deleted inserted replaced
6719:705080ffd4a9 6720:ba02b7a62dbc
161 @return a tuple of interpreter (string), argv (string), workdir 161 @return a tuple of interpreter (string), argv (string), workdir
162 (string), environment (string), exceptions flag (boolean), 162 (string), environment (string), exceptions flag (boolean),
163 clear interpreter flag (boolean) and run in console flag (boolean) 163 clear interpreter flag (boolean) and run in console flag (boolean)
164 """ 164 """
165 cmdLine = self.ui.cmdlineCombo.currentText() 165 cmdLine = self.ui.cmdlineCombo.currentText()
166 workdir = self.ui.workdirPicker.currentText() 166 workdir = self.ui.workdirPicker.currentText(toNative=False)
167 environment = self.ui.environmentCombo.currentText() 167 environment = self.ui.environmentCombo.currentText()
168 venvName = self.ui.venvComboBox.currentText() 168 venvName = self.ui.venvComboBox.currentText()
169 169
170 return (venvName, 170 return (venvName,
171 cmdLine, 171 cmdLine,

eric ide

mercurial