--- a/Debugger/DebugViewer.py Wed Dec 30 15:40:33 2009 +0000 +++ b/Debugger/DebugViewer.py Wed Dec 30 16:43:09 2009 +0000 @@ -432,6 +432,5 @@ @param previous reference to the previous current item (QTreeWidgetItem) """ if current is not None and self.__doThreadListUpdate: - tid, ok = int(current.text(0)) - if ok: - self.debugServer.remoteSetThread(tid) + tid = int(current.text(0)) + self.debugServer.remoteSetThread(tid)