Debugger/ExceptionsFilterDialog.py

changeset 2988
f53c03574697
parent 2302
f29e9405c851
child 3057
10516539f238
child 3160
209a07d7e401
--- a/Debugger/ExceptionsFilterDialog.py	Sun Oct 06 18:02:21 2013 +0200
+++ b/Debugger/ExceptionsFilterDialog.py	Sun Oct 06 19:00:04 2013 +0200
@@ -33,7 +33,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)
     
@@ -42,7 +43,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