--- a/DebugClients/Python/DebugClientBase.py Thu Mar 23 20:27:21 2017 +0100 +++ b/DebugClients/Python/DebugClientBase.py Thu Mar 23 20:30:49 2017 +0100 @@ -723,6 +723,10 @@ self.set_quit() self.eventExit = True + elif method == "RequestMoveIP": + newLine = params["newLine"] + self.currentThreadExec.move_instruction_pointer(newLine) + elif method == "RequestContinue": self.currentThreadExec.go(params["special"]) self.eventExit = True