trailing spaces in sql schema
[plcapi.git] / PLC / Methods / DeleteSlice.py
index bfb6cd6..49df6ea 100644 (file)
@@ -25,25 +25,24 @@ class DeleteSlice(Method):
 
     returns = Parameter(int, '1 if successful')
 
-
     def call(self, auth, slice_id_or_name):
         slices = Slices(self.api, [slice_id_or_name])
         if not slices:
-            raise PLCInvalidArgument, "No such slice"
+            raise PLCInvalidArgument("No such slice")
         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")
 
         slice.delete()
-        self.object_ids = [slice['slice_id']]
+        self.event_objects = {'Slice': [slice['slice_id']]}
 
         return 1