implement file lock based on peername to prevent running two RefreshPeer at a time.
[plcapi.git] / PLC / Methods / UpdateNodeTag.py
index 16123c6..cb7a6a5 100644 (file)
@@ -47,7 +47,7 @@ class UpdateNodeTag(Method):
             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']: