Skip to content

Commit

Permalink
rm Scripts from getSystemPython
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Sep 20, 2024
1 parent fd7cbd9 commit bdbf091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pythonManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export async function getSystemPython(workspaceFolder: Uri) {
).replace(/(\n|\r|\r\n)/gm, "");
const pyDir =
process.platform === "win32"
? ["Scripts", "python.exe"]
? ["python.exe"]
: ["bin", "python3"];
const sysPythonBinPath = join(pythonVersion, ...pyDir);
return sysPythonBinPath;
Expand Down

0 comments on commit bdbf091

Please sign in to comment.