a slightly clearer version of GetSliceFamily
[plcapi.git] / PLC / Methods / DeleteNode.py
index e89d879..a819b24 100644 (file)
@@ -1,4 +1,3 @@
-# $Id$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -48,9 +47,9 @@ class DeleteNode(Method):
         site_id=node['site_id']
         node.delete()
 
-       # Logging variables
+        # Logging variables
         # it's not much use to attach to the node as it's going to vanish...
-       self.event_objects = {'Node': [node_id], 'Site': [site_id] }
-       self.message = "Node %d deleted" % node['node_id']
+        self.event_objects = {'Node': [node_id], 'Site': [site_id] }
+        self.message = "Node %d deleted" % node['node_id']
 
         return 1