- added logging variable 'object_type'
[plcapi.git] / PLC / Methods / AdmGetPersonRoles.py
index 2a862aa..e05f955 100644 (file)
@@ -33,13 +33,15 @@ class AdmGetPersonRoles(Method):
 
     returns = dict
 
+    object_type = 'Person'
+
     def call(self, auth, person_id_or_email):
         # Get account information
         persons = Persons(self.api, [person_id_or_email])
         if not persons:
             raise PLCInvalidArgument, "No such account"
 
-        person = persons.values()[0]
+        person = persons[0]
 
         # Authenticated function
         assert self.caller is not None