From 3efd29e46536c23f3d827e23531942b83acd78f3 Mon Sep 17 00:00:00 2001 From: Lubos Kocman Date: Mon, 7 Sep 2015 15:41:27 +0000 Subject: [PATCH] image_build: self.log_info -> self.compose.log_info --- pungi/phases/image_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/image_build.py b/pungi/phases/image_build.py index 688d2b6e..95bbd5aa 100644 --- a/pungi/phases/image_build.py +++ b/pungi/phases/image_build.py @@ -27,7 +27,7 @@ class ImageBuildPhase(PhaseBase): if PhaseBase.skip(self): return True if not self.compose.conf.get(self.name): - self.log_info("Section '%s' was not found. Skipping" % self.name) + self.compose.log_info("Config section '%s' was not found. Skipping" % self.name) return True return False