Skip to content
Snippets Groups Projects
Commit 9f596ffe authored by qinchunhua's avatar qinchunhua
Browse files

Fix dict.values() PY3 compatible

The dict.values()[0] will raise a TypeError in PY3
as dict.values() doesn't return a list any more in PY3
but a view of list.

TrivialFix.

Change-Id: I01297bb68e45db4d15800d2d42e08560da7346bd
parent 02b22803
No related branches found
No related tags found
No related merge requests found
...@@ -846,7 +846,7 @@ class KollaWorker(object): ...@@ -846,7 +846,7 @@ class KollaWorker(object):
return return
def list_children(images, ancestry): def list_children(images, ancestry):
children = ancestry.values()[0] children = six.next(six.itervalues(ancestry))
for image in images: for image in images:
if image.status not in [STATUS_MATCHED]: if image.status not in [STATUS_MATCHED]:
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment