From: Steve Dower Date: Mon, 24 Sep 2018 13:03:02 +0000 (-0400) Subject: bpo-34582: Fixes Python version used for patch check (GH-9532) X-Git-Tag: v3.8.0a1~897 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b77f929f8d18e9a97335a8ec5e838e5be506568;p=python bpo-34582: Fixes Python version used for patch check (GH-9532) https://bugs.python.org/issue34582 --- diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index 429381a7e2..9fec9be801 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'))