Skip to content

Commit

Permalink
Update src/python_interpreter.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
messense authored Oct 9, 2021
1 parent 3db9605 commit 8c7acb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ fn find_all_windows(target: &Target, min_python_minor: usize) -> Result<Vec<Stri

for path in paths {
let executable_win = Path::new(&path).join("python.exe");
let executable = if (executable_win.exists()) {
let executable = if executable_win.exists() {
executable_win
} else {
Path::new(&path).join("python")
Expand Down

0 comments on commit 8c7acb9

Please sign in to comment.