From a703bf430438b11070fefc63604a25fbec1432f1 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Sat, 15 Jan 2011 11:34:32 +0100 Subject: [PATCH] Fix the OP_ID of OpAssignGroupNodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 96276ae added the above opcode, but forgot to update the OP_ID per our previous mailing list discussions. This patch makes the OP_ID be consistent with the other IDs (OP_$object_$action). Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: RenΓ© Nussbaumer <rn@google.com> --- lib/opcodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/opcodes.py b/lib/opcodes.py index b623f04bb..6d073fcaf 100644 --- a/lib/opcodes.py +++ b/lib/opcodes.py @@ -1029,7 +1029,7 @@ class OpAddGroup(OpCode): class OpAssignGroupNodes(OpCode): """Assign nodes to a node group.""" - OP_ID = "OP_ASSIGN_NODES" + OP_ID = "OP_GROUP_ASSIGN_NODES" OP_DSC_FIELD = "group_name" OP_PARAMS = [ _PGroupName, -- GitLab