--- a/Preferences/ConfigurationPages/DebuggerPythonPage.py Fri Oct 18 23:00:41 2013 +0200 +++ b/Preferences/ConfigurationPages/DebuggerPythonPage.py Fri Nov 01 15:48:48 2013 +0100 @@ -59,7 +59,8 @@ """ Public slot to save the Debugger Python configuration. """ - Preferences.setDebugger("PythonInterpreter", + Preferences.setDebugger( + "PythonInterpreter", self.interpreterEdit.text()) if self.standardButton.isChecked(): dct = "standard" @@ -68,13 +69,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()