--- a/DebugClients/Python/DebugClientBase.py Tue Oct 04 21:45:33 2016 +0200 +++ b/DebugClients/Python/DebugClientBase.py Tue Oct 04 22:38:29 2016 +0200 @@ -232,8 +232,6 @@ self.callTraceEnabled = None - self.skipdirs = sys.path[:] - self.variant = 'You should not see this' # commandline completion stuff @@ -310,7 +308,7 @@ d = {} d["id"] = t.get_ident() d["name"] = t.get_name() - d["broken"] = t.isBroken() + d["broken"] = t.isBroken threadList.append(d) else: currentId = -1 @@ -318,7 +316,7 @@ d["id"] = -1 d["name"] = "MainThread" if hasattr(self, "isBroken"): - d["broken"] = self.isBroken() + d["broken"] = self.isBroken else: d["broken"] = False threadList.append(d)