diff --git a/ptvsd/ipcjson.py b/ptvsd/ipcjson.py index a3f88e668..613cf696f 100644 --- a/ptvsd/ipcjson.py +++ b/ptvsd/ipcjson.py @@ -329,7 +329,10 @@ def on_request(self, request): def on_response(self, msg): # TODO: docstring # this class is only used for server side only for now - raise NotImplementedError + if msg['type'] == 'response' and msg['command'] == 'runInTerminal': + pass + else: + raise NotImplementedError def on_event(self, msg): # TODO: docstring