diff -r 26c1042f2eec -r 93f82da09f22 DebugClients/Python/ThreadExtension.py --- a/DebugClients/Python/ThreadExtension.py Thu Mar 21 19:26:10 2019 +0100 +++ b/DebugClients/Python/ThreadExtension.py Thu Mar 21 19:27:42 2019 +0100 @@ -131,7 +131,7 @@ @rtype bool """ if blocking: - self.clientLock.acquire() + return self.clientLock.acquire() else: return self.clientLock.acquire(blocking)