Auto merge of #24229 - servo:jdm-patch-55, r=paulrouget

Fix python precedence issue.

- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #24228
- [x] These changes do not require tests because nightly builds are tricky to trigger manually

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/24229)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2019-09-18 05:27:16 -04:00 committed by GitHub
commit 4159f01feb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -381,7 +381,7 @@ def appx_artifact(debug, platforms):
'hololens',
'AppPackages',
'ServoApp',
'ServoApp_1.0.0.0_%sTest' % 'Debug_' if debug else '',
'ServoApp_1.0.0.0_%sTest' % ('Debug_' if debug else ''),
'ServoApp_1.0.0.0_%s%s.appxbundle' % (
'_'.join(platforms), '_Debug' if debug else ''
),