Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cv device configlets mode #126

Merged
merged 15 commits into from
Jan 28, 2020
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def tree_build_from_list(containers, root='Tenant', debug=False):
for cvp_container in containers:
if cvp_container['parentName'] is None:
continue
elif cvp_container['parentName'] in [root]:
if cvp_container['parentName'] in [root]:
previously_created.append(cvp_container['name'])
tree.create_node(cvp_container['name'], cvp_container['name'], parent=cvp_container['parentName'])
# Loop since expected tree is not equal to number of entries in container topology
Expand Down
Loading