a slightly clearer version of GetSliceFamily
[plcapi.git] / PLC / Methods / DeleteNode.py
index c97f20a..a819b24 100644 (file)
@@ -1,11 +1,8 @@
-# $Id$
-# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Auth import Auth
 from PLC.Nodes import Node, Nodes
-from PLC.SFA import SFA
 
 class DeleteNode(Method):
     """
@@ -55,7 +52,4 @@ class DeleteNode(Method):
         self.event_objects = {'Node': [node_id], 'Site': [site_id] }
         self.message = "Node %d deleted" % node['node_id']
 
-        sfa = SFA()
-        sfa.delete_record(node, 'node')       
-
         return 1