Debugger/StartDialog.py

branch
maintenance
changeset 6826
c6dda2cbe081
parent 6720
ba02b7a62dbc
child 6891
93f82da09f22
equal deleted inserted replaced
6764:d14ddbfbbd36 6826:c6dda2cbe081
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