--- a/Preferences/ConfigurationPages/DebuggerPython3Page.py Fri Oct 18 23:00:41 2013 +0200 +++ b/Preferences/ConfigurationPages/DebuggerPython3Page.py Fri Nov 01 15:48:48 2013 +0100 @@ -59,7 +59,8 @@ """ Public slot to save the Debugger Python configuration. """ - Preferences.setDebugger("Python3Interpreter", + Preferences.setDebugger( + "Python3Interpreter", self.interpreterEdit.text()) if self.standardButton.isChecked(): dct = "standard" @@ -68,13 +69,17 @@ else: dct = "custom" Preferences.setDebugger("DebugClientType3", dct) - Preferences.setDebugger("DebugClient3", + Preferences.setDebugger( + "DebugClient3", self.debugClientEdit.text()) - Preferences.setDebugger("Python3Redirect", + Preferences.setDebugger( + "Python3Redirect", self.pyRedirectCheckBox.isChecked()) - Preferences.setDebugger("Python3NoEncoding", + Preferences.setDebugger( + "Python3NoEncoding", self.pyNoEncodingCheckBox.isChecked()) - Preferences.setDebugger("Python3Extensions", + Preferences.setDebugger( + "Python3Extensions", self.sourceExtensionsEdit.text()) @pyqtSlot()