diff -r 066e6c78a367 -r b8d53f4149c8 DebugClients/Python/ThreadExtension.py --- a/DebugClients/Python/ThreadExtension.py Wed Nov 08 19:05:55 2017 +0100 +++ b/DebugClients/Python/ThreadExtension.py Thu Nov 09 18:31:34 2017 +0100 @@ -328,7 +328,7 @@ # intercept the thread creation by threading.Thread self.run = lambda s=self, run=self.run: _bootstrap(s, run) - module.Thread.__init__(self, *args, **kwargs) + super(ThreadWrapper, self).__init__(*args, **kwargs) module.Thread = ThreadWrapper