Bug 1273673 followup: bad logging syntax, r=dustin on a CLOSED TREE

--HG--
extra : rebase_source : d74730a644796510d52a994493c5065d9cf5a110
extra : amend_source : 1e4538b179fa72c35fed09d8b4def3724fd325d6
This commit is contained in:
Steve Fink 2016-05-19 10:35:02 -07:00
Родитель 9f7d2279d9
Коммит c2977b87db
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

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