There was an error while loading. Please reload this page.
1 parent 27d1247 commit dbd829aCopy full SHA for dbd829a
src/client/debugger/DebugClients/LocalDebugClient.ts
@@ -123,7 +123,10 @@ export class LocalDebugClient extends DebugClient {
123
}
124
this.displayError(error, "pyProc.stderr");
125
});
126
-
+ this.pyProc.stdout.on("data", d => {
127
+ // This is necessary so we read the stdout of the python process
128
+ // Else it just keep building up (related to issue #203 and #52)
129
+ })
130
resolve();
131
132
0 commit comments