Skip to content

Commit

Permalink
Fix ${command:python.interpreterPath} in tasks.json in multiroot wo…
Browse files Browse the repository at this point in the history
…rkspaces
  • Loading branch information
Kartik Raj committed Sep 12, 2023
1 parent 2268d53 commit 631523b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class InterpreterPathCommand implements IExtensionSingleActivationService

let workspaceFolderUri;
try {
workspaceFolderUri = workspaceFolder ? Uri.parse(workspaceFolder) : undefined;
workspaceFolderUri = workspaceFolder ? Uri.file(workspaceFolder) : undefined;
} catch (ex) {
workspaceFolderUri = undefined;
}
Expand Down

0 comments on commit 631523b

Please sign in to comment.