cosmetic changes in sendmail.py - please the linter
[plcapi.git] / PLC / Methods / DeletePerson.py
index dcb2e52..c214270 100644 (file)
@@ -25,30 +25,27 @@ class DeletePerson(Method):
 
     returns = Parameter(int, '1 if successful')
 
-    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"
+            raise PLCInvalidArgument("No such account")
         person = persons[0]
 
         if person['peer_id'] is not None:
-            raise PLCInvalidArgument, "Not a local account"
+            raise PLCInvalidArgument("Not a local account")
 
         # Authenticated function
         assert self.caller is not None
 
         # Check if we can update this account
         if not self.caller.can_update(person):
-            raise PLCPermissionDenied, "Not allowed to delete specified account"
+            raise PLCPermissionDenied("Not allowed to delete specified account")
 
         person.delete()
-       
-       # Logging variables
-       self.object_ids = [person['person_id']]
-       self.message = 'Person %d deleted' % person['person_id']
+
+        # Logging variables
+        self.event_objects = {'Person': [person['person_id']]}
+        self.message = 'Person %d deleted' % person['person_id']
 
         return 1