Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class PythonShell extends EventEmitter{

// starting 2020 python2 is deprecated so we choose 3 as default
// except for windows which just has "python" command
static defaultPythonPath = process.platform != "win32" ? "python3" : "python";
static defaultPythonPath = process.platform != "win32" ? "python3" : "py";

static defaultOptions:Options = {}; //allow global overrides for options

Expand Down