- refactored marc's kupdate.sh into a new script kvariant.sh
[plcapi.git] / PLC / Methods / DeleteNodeTag.py
index 5917cab..97140e9 100644 (file)
@@ -1,4 +1,4 @@
-# $Id#
+# $Id$
 #
 # Thierry Parmentelat - INRIA
 #
@@ -45,13 +45,13 @@ class DeleteNodeTag(Method):
             raise PLCInvalidArgument, "No such node tag %r"%node_tag_id
         node_tag = node_tags[0]
 
-        ### reproducing a check from UpdateSliceAttribute, looks dumb though
+        ### reproducing a check from UpdateSliceTag, looks dumb though
         nodes = Nodes(self.api, [node_tag['node_id']])
         if not nodes:
             raise PLCInvalidArgument, "No such node %r"%node_tag['node_id']
         node = nodes[0]
 
-        assert node_tag['node_tag_id'] in node['tag_ids']
+        assert node_tag['node_tag_id'] in node['node_tag_ids']
 
        # check permission : it not admin, is the user affiliated with the right site
        if 'admin' not in self.caller['roles']: