- return hostnames instead of node_ids
[plcapi.git] / PLC / Methods / AdmGetSitePersons.py
index 58bd51e..8122528 100644 (file)
@@ -2,7 +2,7 @@ from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Sites import Site, Sites
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
 
 class AdmGetSitePersons(Method):
     """
@@ -19,7 +19,7 @@ class AdmGetSitePersons(Method):
     roles = ['admin', 'pi']
 
     accepts = [
-        PasswordAuth(),
+        Auth(),
         Mixed(Site.fields['site_id'],
               Site.fields['login_base'])
         ]
@@ -31,7 +31,7 @@ class AdmGetSitePersons(Method):
         assert self.caller is not None
 
         # Get site information
-       sites = Sites(self.api, [site_id_or_login_base]).values()
+       sites = Sites(self.api, [site_id_or_login_base])
        if not sites:
             raise PLCInvalidArgument, "No such site"