svn keywords
[plcapi.git] / PLC / Methods / DeleteBootState.py
index b7bce21..2339778 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -23,6 +25,7 @@ class DeleteBootState(Method):
 
     returns = Parameter(int, '1 if successful')
 
+
     def call(self, auth, name):
         boot_states = BootStates(self.api, [name])
         if not boot_states:
@@ -30,5 +33,5 @@ class DeleteBootState(Method):
         boot_state = boot_states[0]
 
         boot_state.delete()
-
+       
         return 1