Fix python string concat v.s. interpolation

This commit is contained in:
Simon Sapin 2018-08-30 15:28:38 +02:00
parent ed3c23d2f0
commit 0d037881d5

View file

@ -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)