From 0d037881d56238f2e65e6fe1a154bd11b20e1042 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 30 Aug 2018 15:28:38 +0200 Subject: [PATCH] Fix python string concat v.s. interpolation --- decision-task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decision-task.py b/decision-task.py index b161eca5a22..53c420dd179 100644 --- a/decision-task.py +++ b/decision-task.py @@ -48,4 +48,4 @@ payload = { # https://docs.taskcluster.net/docs/reference/workers/docker-worker/docs/features#feature-taskclusterproxy queue = taskcluster.Queue(options={"baseUrl": "http://taskcluster/queue/v1/"}) queue.createTask(task_id, payload) -print("new task scheduled: " % task_id) +print("new task scheduled: " + task_id)