Merge #54 `fix log_info for image_build (fails if image_build is skipped)`

This commit is contained in:
Lubos Kocman 2015-09-07 15:41:27 +00:00
commit fd64bba4dd
1 changed files with 1 additions and 1 deletions

View File

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