Skip to content
Snippets Groups Projects
Commit 3bb6ad27 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Fixes matching issue build.py"

parents 14d706da 73ceb2af
No related branches found
No related tags found
No related merge requests found
...@@ -422,7 +422,7 @@ class KollaWorker(object): ...@@ -422,7 +422,7 @@ class KollaWorker(object):
image['name'] + ':' + self.tag image['name'] + ':' + self.tag
image['path'] = path image['path'] = path
image['parent_name'] = content.split(' ')[1].split('\n')[0] image['parent_name'] = content.split(' ')[1].split('\n')[0]
if self.namespace not in image['parent_name']: if not image['parent_name'].startswith(self.namespace + '/'):
image['parent'] = None image['parent'] = None
image['children'] = list() image['children'] = list()
......
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