--- a/DebugClients/Python/DebugClientBase.py Thu Jan 22 19:16:51 2015 +0100 +++ b/DebugClients/Python/DebugClientBase.py Fri Jan 23 20:27:35 2015 +0100 @@ -325,7 +325,10 @@ d = {} d["id"] = -1 d["name"] = "MainThread" - d["broken"] = self.isBroken() + if hasattr(self, "isBroken"): + d["broken"] = self.isBroken() + else: + d["broken"] = False threadList.append(d) self.write('%s%s\n' % (DebugProtocol.ResponseThreadList,