get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / SliceRenew.py
index cfed340..531c4a7 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-# $URL$
 import time
 
 from PLC.Faults import *
@@ -7,11 +5,11 @@ from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Slices import Slice, Slices
 from PLC.Auth import Auth
-from PLC.Methods.UpdateSlice import UpdateSlice 
+from PLC.Methods.UpdateSlice import UpdateSlice
 
 class SliceRenew(UpdateSlice):
     """
-    Deprecated. See UpdateSlice.    
+    Deprecated. See UpdateSlice.
 
     """
 
@@ -22,15 +20,14 @@ class SliceRenew(UpdateSlice):
     accepts = [
         Auth(),
         Slice.fields['name'],
-       Slice.fields['expires']
+        Slice.fields['expires']
         ]
 
     returns = Parameter(int, '1 if successful')
 
     def call(self, auth, slice_name, slice_expires):
 
-       slice_fields = {}
-       slice_fields['expires'] = slice_expires
-       
-       return UpdateSlice.call(self, auth, slice_name, slice_fields)
+        slice_fields = {}
+        slice_fields['expires'] = slice_expires
+
+        return UpdateSlice.call(self, auth, slice_name, slice_fields)