From b35ecbae36ed96fabd4808425516157bf870b666 Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Tue, 24 Oct 2017 19:51:18 +0800 Subject: [PATCH] Fix docstring of method run_build It returns a 4-tuple, not a 3-tuple. Change-Id: I3a1ba7c840ced519a3c47664f42ddc1822f1d1bb --- kolla/image/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kolla/image/build.py b/kolla/image/build.py index 00465121b1..94b72eff1b 100755 --- a/kolla/image/build.py +++ b/kolla/image/build.py @@ -1209,8 +1209,8 @@ class KollaWorker(object): def run_build(): """Build container images. - :return: A 3-tuple containing bad, good, and unmatched container image - status dicts, or None if no images were built. + :return: A 4-tuple containing bad, good, unmatched and skipped container + image status dicts, or None if no images were built. """ conf = cfg.ConfigOpts() common_config.parse(conf, sys.argv[1:], prog='kolla-build')