From e13412f2c02b935e6667d3e20b096600fcc93ab7 Mon Sep 17 00:00:00 2001 From: Walnut <39544927+Walnut356@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:31:47 -0500 Subject: [PATCH] update python executable path --- src/tools/tidy/src/extra_checks/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tidy/src/extra_checks/mod.rs b/src/tools/tidy/src/extra_checks/mod.rs index 4ba2da7b5d3f..008cc0322534 100644 --- a/src/tools/tidy/src/extra_checks/mod.rs +++ b/src/tools/tidy/src/extra_checks/mod.rs @@ -35,7 +35,7 @@ /// Path to find the python executable within a virtual environment #[cfg(target_os = "windows")] -const REL_PY_PATH: &[&str] = &["Scripts", "python3.exe"]; +const REL_PY_PATH: &[&str] = &["Scripts", "python.exe"]; #[cfg(not(target_os = "windows"))] const REL_PY_PATH: &[&str] = &["bin", "python3"];