fix NameError
[plcapi.git] / PLC / Methods / BlacklistKey.py
index 9b72492..afe1d93 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -23,19 +25,20 @@ class BlacklistKey(Method):
         ]
 
     returns = Parameter(int, '1 if successful')
-   
-    event_type = 'Update'
-    object_type = 'Key'
-    object_ids = []
 
     def call(self, auth, key_id):
         # Get associated key details
-        keys = Keys(self.api, [key_id]).values()
+        keys = Keys(self.api, [key_id])
         if not keys:
             raise PLCInvalidArgument, "No such key"
         key = keys[0]
 
+        # N.B.: Can blacklist any key, even foreign ones
+
         key.blacklist()
-       self.object_ids = [key['key_id']]
+
+        # Logging variables
+        self.event_objects = {'Key': [key['key_id']]}
+        self.message = 'Key %d blacklisted' % key['key_id']
 
         return 1