revert change introduced in #162 (#164)

Revert #162
This commit is contained in:
Don Jayamanne 2018-03-02 15:34:47 -08:00 committed by GitHub
parent 498c071ed4
commit 10d4e51f51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -513,7 +513,8 @@ class VSCodeMessageProcessor(ipcjson.SocketIO, ipcjson.IpcChannel):
def on_initialize(self, request, args):
# TODO: docstring
cmd = pydevd_comm.CMD_VERSION
msg = '1.1\tUNIX\tID'
os_id = 'WINDOWS' if platform.system() == 'Windows' else 'UNIX'
msg = '1.1\t{}\tID'.format(os_id)
yield self.pydevd_request(cmd, msg)
self.send_response(
request,