Merge "Fix indentation on debug statement" into feature/zuulv3

This commit is contained in:
Zuul 2017-12-27 02:34:22 +00:00 committed by Gerrit Code Review
commit 86f0bf8906
1 changed files with 5 additions and 5 deletions

View File

@ -2647,11 +2647,11 @@ class Layout(object):
repr(variant), change)
item.debug("Pipeline variant {variant} matched".format(
variant=repr(variant)), indent=2)
else:
self.log.debug("Pipeline variant %s did not match %s",
repr(variant), change)
item.debug("Pipeline variant {variant} did not match".format(
variant=repr(variant)), indent=2)
else:
self.log.debug("Pipeline variant %s did not match %s",
repr(variant), change)
item.debug("Pipeline variant {variant} did not match".
format(variant=repr(variant)), indent=2)
if not matched:
# A change must match at least one project pipeline
# job variant.