Merge remote-tracking branch 'origin/pycurl' into planetlab-4_0-branch
[plcapi.git] / PLC / Methods / AdmGetNodes.py
1 from PLC.Methods.GetNodes import GetNodes
2
3 class AdmGetNodes(GetNodes):
4     """
5     Deprecated. See GetNodes. All fields are now always returned.
6     """
7
8     status = "deprecated"
9
10     def call(self, auth, node_id_or_hostname_list = None, return_fields = None):
11         return GetNodes.call(self, auth, node_id_or_hostname_list)