diff -r a6b2acd1a355 -r f3428ddd577c Debugger/ExceptionsFilterDialog.py --- a/Debugger/ExceptionsFilterDialog.py Sun Nov 08 17:01:39 2015 +0100 +++ b/Debugger/ExceptionsFilterDialog.py Thu Nov 12 19:17:05 2015 +0100 @@ -62,7 +62,7 @@ Private slot to delete all exceptions of the listbox. """ while self.exceptionList.count() > 0: - itm = self.exceptionList.takeItem(0) + itm = self.exceptionList.takeItem(0) # __IGNORE_WARNING__ del itm @pyqtSlot()