--- a/DebugClients/Python/DebugBase.py Thu Nov 09 18:31:34 2017 +0100 +++ b/DebugClients/Python/DebugBase.py Sat Nov 11 18:44:04 2017 +0100 @@ -382,14 +382,14 @@ frame = sys._getframe().f_back # Skip set_trace method if sys.version_info[0] == 2: - stopOnHandleLine = self._dbgClient.handleLine.func_code + stopOnHandleCommand = self._dbgClient.handleJsonCommand.func_code else: - stopOnHandleLine = self._dbgClient.handleLine.__code__ + stopOnHandleCommand = self._dbgClient.handleJsonCommand.__code__ frame.f_trace = self.trace_dispatch while frame.f_back is not None: - # stop at erics debugger frame or a threading bootstrap - if (frame.f_back.f_code == stopOnHandleLine): + # stop at eric's debugger frame or a threading bootstrap + if (frame.f_back.f_code == stopOnHandleCommand): frame.f_trace = self.trace_dispatch break