Preferences/ConfigurationPages/DebuggerPythonPage.py

changeset 3025
67064c71df21
parent 2964
84b65fb9e780
child 3058
0a02c433f52d
child 3160
209a07d7e401
--- 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()

eric ide

mercurial