diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-09-24 13:03:02 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-24 13:03:02 (GMT) |
commit | 1b77f929f8d18e9a97335a8ec5e838e5be506568 (patch) | |
tree | 3fd9cbcaa817c2af5f8819c79844eff75721d4ee /.azure-pipelines | |
parent | 680d26e3b6b3fcd2deadd392d837325e2d1bb652 (diff) | |
download | cpython-1b77f929f8d18e9a97335a8ec5e838e5be506568.zip cpython-1b77f929f8d18e9a97335a8ec5e838e5be506568.tar.gz cpython-1b77f929f8d18e9a97335a8ec5e838e5be506568.tar.bz2 |
bpo-34582: Fixes Python version used for patch check (GH-9532)
https://bugs.python.org/issue34582
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/posix-steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index 429381a..9fec9be 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')) |