From 73ac472e4e274dc38d7c8d2c6886f836355a65ca Mon Sep 17 00:00:00 2001 From: SamYaple Date: Fri, 25 Dec 2015 03:26:27 +0000 Subject: [PATCH] Fix logging params Something was missed during the logging update TrivialFix Change-Id: Ic611b7a0e2a53725b1a3a76aba56faeca5f68dfa --- kolla/cmd/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolla/cmd/build.py b/kolla/cmd/build.py index 6193fd5c9b..7a60dbb836 100755 --- a/kolla/cmd/build.py +++ b/kolla/cmd/build.py @@ -571,7 +571,7 @@ class KollaWorker(object): LOG.info("Images that failed to build") LOG.info("===========================") for name, status in six.iteritems(self.image_statuses_bad): - LOG.error('{}\r\t\t\t Failed with status: %s', name, status) + LOG.error('%s\r\t\t\t Failed with status: %s', name, status) if self.image_statuses_unmatched: LOG.debug("Images not matched for build by regex")