diff -r 9986ec0e559a -r 10516539f238 Debugger/ExceptionsFilterDialog.py --- 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):