From f0e6aaa3c5a41ecd51cd9f162baf4d465c497f56 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 21 May 2012 13:07:19 +0200 Subject: [PATCH] cosmetic --- PLC/Methods/AddSliceToNodes.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PLC/Methods/AddSliceToNodes.py b/PLC/Methods/AddSliceToNodes.py index e3c2f56..db074ca 100644 --- a/PLC/Methods/AddSliceToNodes.py +++ b/PLC/Methods/AddSliceToNodes.py @@ -48,11 +48,12 @@ class AddSliceToNodes(Method): raise PLCPermissionDenied, "Specified slice not associated with any of your sites" # Get specified nodes, add them to the slice - nodes = Nodes(self.api, node_id_or_hostname_list, ['node_id', 'hostname', 'slice_ids', 'slice_ids_whitelist', 'site_id']) + nodes = Nodes(self.api, node_id_or_hostname_list, + ['node_id', 'hostname', 'slice_ids', 'slice_ids_whitelist', 'site_id']) for node in nodes: # check the slice whitelist on each node first - # allow users at site to add node to slice, ignoring whitelist + # allow users at site to add node to slice, ignoring whitelist if node['slice_ids_whitelist'] and \ slice['slice_id'] not in node['slice_ids_whitelist'] and \ not set(self.caller['site_ids']).intersection([node['site_id']]): -- 2.45.2