Don't exit on unknown command

This commit is contained in:
Karthik Nadig 2018-04-12 11:53:05 -07:00
parent 7fee31e21f
commit 0562bcddc0
2 changed files with 1 additions and 7 deletions

View file

@ -26,8 +26,7 @@ class PTVSD(ptvsd.daemon.Daemon):
)
client, server = connect()
self.start(server)
proc = self.set_connection(client)
proc._exit_on_unknown_command = False # TODO: hack alert!
self.set_connection(client)
return self
@property