Preferences/ConfigurationPages/DebuggerPython3Page.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3025
67064c71df21
child 3145
a9de05d4a22f
--- 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()

eric ide

mercurial