Debugger/EditBreakpointDialog.py

changeset 2988
f53c03574697
parent 2953
703452a2876f
child 3057
10516539f238
child 3160
209a07d7e401
diff -r c99695c0f13a -r f53c03574697 Debugger/EditBreakpointDialog.py
--- a/Debugger/EditBreakpointDialog.py	Sun Oct 06 18:02:21 2013 +0200
+++ b/Debugger/EditBreakpointDialog.py	Sun Oct 06 19:00:04 2013 +0200
@@ -151,7 +151,8 @@
         Public method to retrieve the entered data for an add.
         
         @return a tuple containing the new breakpoints properties
-            (filename, lineno, condition, temporary flag, enabled flag, ignore count)
+            (filename, lineno, condition, temporary flag, enabled flag,
+            ignore count)
         """
         fn = self.filenameCombo.currentText()
         if not fn:
@@ -161,5 +162,6 @@
         
         return (fn, self.linenoSpinBox.value(),
                 self.conditionCombo.currentText(),
-                self.temporaryCheckBox.isChecked(), self.enabledCheckBox.isChecked(),
+                self.temporaryCheckBox.isChecked(),
+                self.enabledCheckBox.isChecked(),
                 self.ignoreSpinBox.value())

eric ide

mercurial