Merge from HEAD. Signed off by tmack.
[plcapi.git] / PLC / Methods / UpdatePCU.py
index 99415f2..8916684 100644 (file)
@@ -44,6 +44,9 @@ class UpdatePCU(Method):
 
         pcu.update(pcu_fields)
         pcu.sync()
-       self.object_ids = [pcu['pcu_id']]
-
+       
+       # Logging variables
+       self.event_objects = {'PCU': [pcu['pcu_id']]}
+       self.message = 'PCU %d updated: %s' % \
+               (pcu['pcu_id'], ", ".join(pcu_fields.keys()))
         return 1