Preferences/ConfigurationPages/DebuggerPython3Page.py

changeset 6357
ceb3d7c25650
parent 6349
17b3c75913de
child 6381
37f23590dbbc
equal deleted inserted replaced
6356:db067aab426d 6357:ceb3d7c25650
66 66
67 def save(self): 67 def save(self):
68 """ 68 """
69 Public slot to save the Debugger Python configuration. 69 Public slot to save the Debugger Python configuration.
70 """ 70 """
71 venvName = self.venvComboBox.currentText() 71 Preferences.setDebugger(
72 if venvName: 72 "Python3VirtualEnv",
73 Preferences.setDebugger( 73 self.venvComboBox.currentText())
74 "Python3VirtualEnv",
75 venvName)
76 if self.standardButton.isChecked(): 74 if self.standardButton.isChecked():
77 dct = "standard" 75 dct = "standard"
78 else: 76 else:
79 dct = "custom" 77 dct = "custom"
80 Preferences.setDebugger("DebugClientType3", dct) 78 Preferences.setDebugger("DebugClientType3", dct)

eric ide

mercurial