diff -r c99695c0f13a -r f53c03574697 Debugger/ExceptionsFilterDialog.py --- 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):