From: Thierry Parmentelat Date: Mon, 21 May 2012 11:07:19 +0000 (+0200) Subject: cosmetic X-Git-Tag: plcapi-5.1-2~4 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=f0e6aaa3c5a41ecd51cd9f162baf4d465c497f56 cosmetic --- 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']]):