formatted the 'db' script using vscode
[plcapi.git] / PLC / Methods / AddSliceToNodes.py
index db074ca..b0bd880 100644 (file)
@@ -33,19 +33,19 @@ class AddSliceToNodes(Method):
         # Get slice information
         slices = Slices(self.api, [slice_id_or_name])
         if not slices:
-            raise PLCInvalidArgument, "No such slice %r"%slice_id_or_name
+            raise PLCInvalidArgument("No such slice %r"%slice_id_or_name)
         slice = slices[0]
 
         if slice['peer_id'] is not None:
-            raise PLCInvalidArgument, "Not a local slice"
+            raise PLCInvalidArgument("Not a local slice")
 
         if 'admin' not in self.caller['roles']:
             if self.caller['person_id'] in slice['person_ids']:
                 pass
             elif 'pi' not in self.caller['roles']:
-                raise PLCPermissionDenied, "Not a member of the specified slice"
+                raise PLCPermissionDenied("Not a member of the specified slice")
             elif slice['site_id'] not in self.caller['site_ids']:
-                raise PLCPermissionDenied, "Specified slice not associated with any of your sites"
+                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, 
@@ -57,8 +57,8 @@ class AddSliceToNodes(Method):
             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']]):
-                raise PLCInvalidArgument"%s is not allowed on %s (not on the whitelist)" % \
-                  (slice['name'], node['hostname'])
+                raise PLCInvalidArgument("%s is not allowed on %s (not on the whitelist)" % \
+                  (slice['name'], node['hostname']))
             if slice['slice_id'] not in node['slice_ids']:
                 slice.add_node(node, commit = False)