diff -r ba1312abe858 -r d89cd224dd1b DebugClients/Python/ThreadExtension.py --- a/DebugClients/Python/ThreadExtension.py Sat Oct 21 15:11:21 2017 +0200 +++ b/DebugClients/Python/ThreadExtension.py Sat Oct 21 15:13:56 2017 +0200 @@ -328,7 +328,7 @@ # intercept the thread creation by threading.Thread self.run = lambda s=self, run=self.run: _bootstrap(s, run) - super(ThreadWrapper, self).__init__(*args, **kwargs) + module.Thread.__init__(self, *args, **kwargs) module.Thread = ThreadWrapper