From a45dc94e8c7daabc8c7fcce954731e3c4dd8e987 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 8 Jun 2016 17:50:39 -0700 Subject: [PATCH] Use 'image' not 'item' The things in self.images are images, not items so reflect these to use the shared 'image' name vs having a one-off that uses 'item'. TrivalFix Change-Id: I781514d3e116de32b4fe61a7f55455282680fec1 --- kolla/image/build.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kolla/image/build.py b/kolla/image/build.py index 40601f0e84..7dc7c7629d 100755 --- a/kolla/image/build.py +++ b/kolla/image/build.py @@ -809,15 +809,15 @@ class KollaWorker(object): def list_children(images, ancestry): children = ancestry.values()[0] - for item in images: - if item.status not in [STATUS_MATCHED]: + for image in images: + if image.status not in [STATUS_MATCHED]: continue - if not item.children: - children.append(item.name) + if not image.children: + children.append(image.name) else: - newparent = {item.name: []} + newparent = {image.name: []} children.append(newparent) - list_children(item.children, newparent) + list_children(image.children, newparent) ancestry = {base.name: []} list_children(base.children, ancestry)