- added 'message' instance variable (high level description of this event)
[plcapi.git] / PLC / Methods / UpdatePCU.py
index 5980f0c..1c915ac 100644 (file)
@@ -33,7 +33,7 @@ class UpdatePCU(Method):
         pcu_fields = dict(filter(can_update, pcu_fields.items()))
 
         # Get associated PCU details
-        pcus = PCUs(self.api, [pcu_id]).values()
+        pcus = PCUs(self.api, [pcu_id])
         if not pcus:
             raise PLCInvalidArgument, "No such PCU"
         pcu = pcus[0]
@@ -44,5 +44,9 @@ class UpdatePCU(Method):
 
         pcu.update(pcu_fields)
         pcu.sync()
-
+       
+       # Logging variables
+       self.object_ids = [pcu['pcu_id']]
+       self.message = 'PCU %d updated: %s' % \
+               (pcu['pcu_id'], ", ".join(pcu_fields.keys()))
         return 1