There was an error while loading. Please reload this page.
1 parent 7a86cf0 commit b9fa04cCopy full SHA for b9fa04c
src/client/common/process/internal/python.ts
@@ -28,7 +28,7 @@ export function execCode(code: string, isolated = true): string[] {
28
export function execModule(name: string, moduleArgs: string[], isolated = true): string[] {
29
const args = ['-m', name, ...moduleArgs];
30
if (isolated) {
31
- args[0] = ISOLATED.fileToCommandArgument();
+ args[0] = ISOLATED;
32
}
33
// "code" isn't specific enough to know how to parse it,
34
// so we only return the args.
0 commit comments