From c2977b87db798d03f3f4f7447c4a05ef7bf0c541 Mon Sep 17 00:00:00 2001 From: Steve Fink Date: Thu, 19 May 2016 10:35:02 -0700 Subject: [PATCH] Bug 1273673 followup: bad logging syntax, r=dustin on a CLOSED TREE --HG-- extra : rebase_source : d74730a644796510d52a994493c5065d9cf5a110 extra : amend_source : 1e4538b179fa72c35fed09d8b4def3724fd325d6 --- taskcluster/taskgraph/kind/legacy.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/taskcluster/taskgraph/kind/legacy.py b/taskcluster/taskgraph/kind/legacy.py index 4fd0967d95e6..e2a295e04301 100644 --- a/taskcluster/taskgraph/kind/legacy.py +++ b/taskcluster/taskgraph/kind/legacy.py @@ -190,12 +190,12 @@ class LegacyKind(base.Kind): for pattern in file_patterns: for path in changed_files: if mozpackmatch(path, pattern): - logger.debug('scheduling {task} because pattern {pattern} ' - 'matches {path}', format({ - 'task': task['task'], - 'pattern': pattern, - 'path': path, - })) + logger.debug('scheduling {task} because pattern {pattern} '+ + 'matches {path}'.format( + task=task['task'], + pattern=pattern, + path=path, + )) return True # No file patterns matched. Discard task.