--- a/Preferences/ConfigurationPages/DebuggerPythonPage.py Tue Oct 15 19:13:32 2013 +0200 +++ b/Preferences/ConfigurationPages/DebuggerPythonPage.py Wed Oct 16 15:16:54 2013 +0200 @@ -57,7 +57,8 @@ """ Public slot to save the Debugger Python configuration. """ - Preferences.setDebugger("PythonInterpreter", + Preferences.setDebugger( + "PythonInterpreter", self.interpreterEdit.text()) if self.standardButton.isChecked(): dct = "standard" @@ -66,13 +67,17 @@ else: dct = "custom" Preferences.setDebugger("DebugClientType", dct) - Preferences.setDebugger("DebugClient", + Preferences.setDebugger( + "DebugClient", self.debugClientEdit.text()) - Preferences.setDebugger("PythonRedirect", + Preferences.setDebugger( + "PythonRedirect", self.pyRedirectCheckBox.isChecked()) - Preferences.setDebugger("PythonNoEncoding", + Preferences.setDebugger( + "PythonNoEncoding", self.pyNoEncodingCheckBox.isChecked()) - Preferences.setDebugger("PythonExtensions", + Preferences.setDebugger( + "PythonExtensions", self.sourceExtensionsEdit.text()) @pyqtSlot()