This commit was manufactured by cvs2svn to create branch
[plcapi.git] / PLC / Methods / AddNodeGroup.py
index 8ea7433..bdde7fe 100644 (file)
@@ -26,15 +26,14 @@ class AddNodeGroup(Method):
 
     returns = Parameter(int, 'New nodegroup_id (> 0) if successful')
 
-    event_type = 'Add'
-    object_type = 'NodeGroup'
-    object_ids = []
 
     def call(self, auth, nodegroup_fields):
         nodegroup_fields = dict(filter(can_update, nodegroup_fields.items()))
         nodegroup = NodeGroup(self.api, nodegroup_fields)
         nodegroup.sync()
 
+       # Logging variables
        self.object_ids = [nodegroup['nodegroup_id']]
-
+       self.message = 'Node group %d created' % nodegroup['nodegroup_id']
         return nodegroup['nodegroup_id']