- re-enable return_fields specification
[plcapi.git] / PLC / Methods / DeletePCU.py
index 4b50a3f..01382b1 100644 (file)
@@ -24,7 +24,7 @@ class DeletePCU(Method):
 
     def call(self, auth, pcu_id):
         # 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]