added sfa upcalls
[plcapi.git] / PLC / Methods / DeleteSlice.py
index d3bc8f4..29840ee 100644 (file)
@@ -5,6 +5,7 @@ from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Slices import Slice, Slices
 from PLC.Auth import Auth
+from PLC.SFA import SFA
 
 class DeleteSlice(Method):
     """
@@ -47,4 +48,7 @@ class DeleteSlice(Method):
         slice.delete()
         self.event_objects = {'Slice': [slice['slice_id']]}
 
+        sfa = SFA()
+        sfa.delete_record(slice, 'slice')
+
         return 1