get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / GetInitScripts.py
index a852c38..5a3bf1c 100644 (file)
@@ -1,4 +1,3 @@
-# $Id#
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -8,10 +7,10 @@ from PLC.Auth import Auth
 
 class GetInitScripts(Method):
     """
-    Returns an array of structs containing details about initscripts. 
-    If initscript_filter is specified and is an array of initscript 
-    identifiers, or a struct of initscript attributes, only initscripts 
-    matching the filter will be returned. If return_fields is specified, 
+    Returns an array of structs containing details about initscripts.
+    If initscript_filter is specified and is an array of initscript
+    identifiers, or a struct of initscript attributes, only initscripts
+    matching the filter will be returned. If return_fields is specified,
     only the specified details will be returned.
     """
 
@@ -20,7 +19,7 @@ class GetInitScripts(Method):
     accepts = [
         Auth(),
         Mixed([Mixed(InitScript.fields['initscript_id'],
-                    InitScript.fields['name'])],
+                     InitScript.fields['name'])],
               Filter(InitScript.fields)),
         Parameter([str], "List of fields to return", nullok = True)
         ]