From 1b77f929f8d18e9a97335a8ec5e838e5be506568 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Mon, 24 Sep 2018 09:03:02 -0400 Subject: [PATCH] bpo-34582: Fixes Python version used for patch check (GH-9532) https://bugs.python.org/issue34582 --- .azure-pipelines/posix-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index 429381a7e24..9fec9be8014 100644 --- a/.azure-pipelines/posix-steps.yml +++ b/.azure-pipelines/posix-steps.yml @@ -48,7 +48,7 @@ steps: displayName: 'Tests' -- script: python Tools/scripts/patchcheck.py --travis true +- script: ./python Tools/scripts/patchcheck.py --travis true displayName: 'Run patchcheck.py' condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))