- Change .py files to use 4-space indents and no hard tab characters.
[plcapi.git] / PLC / Methods / SliceNodesDel.py
index 6de7a1b..662b831 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -6,7 +8,7 @@ from PLC.Slices import Slice, Slices
 from PLC.Auth import Auth
 from PLC.Methods.DeleteSliceFromNodes import DeleteSliceFromNodes
 
-class SliceNodesDel(Method):
+class SliceNodesDel(DeleteSliceFromNodes):
     """
     Deprecated. See DeleteSliceFromNodes.
 
@@ -24,7 +26,6 @@ class SliceNodesDel(Method):
 
     returns = Parameter(int, '1 if successful')
 
-
     def call(self, auth, slice_name, nodes_list):
 
-       return DeleteSliceFromNodes.call(self, auth, slice_name, nodes_list)
+        return DeleteSliceFromNodes.call(self, auth, slice_name, nodes_list)