svn keywords
[plcapi.git] / PLC / Methods / DeletePCU.py
index 01382b1..6b6c45f 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -22,6 +24,7 @@ class DeletePCU(Method):
 
     returns = Parameter(int, '1 if successful')
 
+
     def call(self, auth, pcu_id):
         # Get associated PCU details
         pcus = PCUs(self.api, [pcu_id])
@@ -34,5 +37,9 @@ class DeletePCU(Method):
                 raise PLCPermissionDenied, "Not allowed to update that PCU"
 
         pcu.delete()
+       
+       # Logging variables
+       self.event_objects = {'PCU': [pcu['pcu_id']]}
+       self.message = 'PCU %d deleted' % pcu['pcu_id']
 
         return 1