Debugger/ExceptionsFilterDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2988
f53c03574697
child 3145
a9de05d4a22f
--- a/Debugger/ExceptionsFilterDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Debugger/ExceptionsFilterDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -35,7 +35,8 @@
         
         if ignore:
             self.setWindowTitle(self.trUtf8("Ignored Exceptions"))
-            self.exceptionList.setToolTip(self.trUtf8("List of ignored exceptions"))
+            self.exceptionList.setToolTip(
+                self.trUtf8("List of ignored exceptions"))
         
         self.okButton = self.buttonBox.button(QDialogButtonBox.Ok)
     
@@ -44,7 +45,8 @@
         """
         Private slot to handle the change of the selection.
         """
-        self.deleteButton.setEnabled(len(self.exceptionList.selectedItems()) > 0)
+        self.deleteButton.setEnabled(
+            len(self.exceptionList.selectedItems()) > 0)
     
     @pyqtSlot()
     def on_deleteButton_clicked(self):

eric ide

mercurial