- Change .py files to use 4-space indents and no hard tab characters.
[plcapi.git] / PLC / Methods / DeletePCU.py
index 0d7a09a..caff26b 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -35,9 +37,9 @@ class DeletePCU(Method):
                 raise PLCPermissionDenied, "Not allowed to update that PCU"
 
         pcu.delete()
-       
-       # Logging variables
-       self.object_ids = [pcu['pcu_id']]
-       self.message = 'PCU %d deleted' % pcu['pcu_id']
+
+        # Logging variables
+        self.event_objects = {'PCU': [pcu['pcu_id']]}
+        self.message = 'PCU %d deleted' % pcu['pcu_id']
 
         return 1