From aa3359dc9e5195873d02a3ab41858d34c907b27c Mon Sep 17 00:00:00 2001 From: Dominic Cooney Date: Sat, 22 May 2021 17:53:10 +0900 Subject: [PATCH] Make mach.bat request Python 3 The mach Python script no longer supports Python 2, so don't use Python 2. Fixes #28379 Signed-off-by: Dominic Cooney --- mach.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach.bat b/mach.bat index 7258a0d79ce..2e76ecf92bc 100644 --- a/mach.bat +++ b/mach.bat @@ -4,5 +4,5 @@ where /Q py.exe IF %ERRORLEVEL% NEQ 0 ( python mach %* ) ELSE ( - py -2 mach %* + py -3 mach %* )