- send account registration e-mails from the website
[plcapi.git] / PLC / Methods / GetNodes.py
index 22b8e01..8ab44f0 100644 (file)
@@ -23,11 +23,12 @@ class GetNodes(Method):
         Mixed([Mixed(Node.fields['node_id'],
                      Node.fields['hostname'])],
               Filter(Node.fields)),
-        Parameter([str], "List of fields to return", nullok = True)
+        Parameter([str], "List of fields to return", nullok = True),
         ]
 
     returns = [Node.fields]
 
+
     def call(self, auth, node_filter = None, return_fields = None):
         # Get node information
         nodes = Nodes(self.api, node_filter, return_fields)