aboutsummaryrefslogtreecommitdiffstats
path: root/etc/taskcluster/decision_task.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-09-17 15:50:27 -0400
committerGitHub <noreply@github.com>2019-09-17 15:50:27 -0400
commitf3a8b66a0fd402f9ecde0f42f1e4b05824ea9d6b (patch)
tree7b39e67680674af9a43bb8feac67c3712d4122eb /etc/taskcluster/decision_task.py
parente431a7baf712182f10782d0264399917a185c128 (diff)
downloadservo-f3a8b66a0fd402f9ecde0f42f1e4b05824ea9d6b.tar.gz
servo-f3a8b66a0fd402f9ecde0f42f1e4b05824ea9d6b.zip
Fix python precedence issue.
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r--etc/taskcluster/decision_task.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py
index 4c9129e12eb..3da9c8a5ba4 100644
--- a/etc/taskcluster/decision_task.py
+++ b/etc/taskcluster/decision_task.py
@@ -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 ''
),