Skip to content

Commit b9fa04c

Browse files
committed
Do not quote isolated in exec module
1 parent 7a86cf0 commit b9fa04c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/common/process/internal/python.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function execCode(code: string, isolated = true): string[] {
2828
export function execModule(name: string, moduleArgs: string[], isolated = true): string[] {
2929
const args = ['-m', name, ...moduleArgs];
3030
if (isolated) {
31-
args[0] = ISOLATED.fileToCommandArgument();
31+
args[0] = ISOLATED;
3232
}
3333
// "code" isn't specific enough to know how to parse it,
3434
// so we only return the args.

0 commit comments

Comments
 (0)