get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / SliceUpdate.py
index a07bc1c..7f6b754 100644 (file)
@@ -1,4 +1,3 @@
-# $Id$
 import time
 
 from PLC.Faults import *
@@ -11,7 +10,7 @@ from PLC.Methods.UpdateSlice import UpdateSlice
 class SliceUpdate(UpdateSlice):
     """
     Deprecated. See UpdateSlice.
-   
+
     """
 
     status = 'deprecated'
@@ -29,10 +28,10 @@ class SliceUpdate(UpdateSlice):
 
     def call(self, auth, slice_name, url, description):
 
-       slice_fields = {}
-       slice_fields['url'] = url
-       slice_fields['description'] = description
-       
-       return UpdateSlice.call(self, auth, slice_name, slice_fields)
+        slice_fields = {}
+        slice_fields['url'] = url
+        slice_fields['description'] = description
+
+        return UpdateSlice.call(self, auth, slice_name, slice_fields)
 
         return 1