From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE75D138334 for ; Mon, 12 Nov 2018 03:08:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C019E09B6; Mon, 12 Nov 2018 03:08:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 292DFE09B6 for ; Mon, 12 Nov 2018 03:08:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E5D6335C38 for ; Mon, 12 Nov 2018 03:08:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33EA645A for ; Mon, 12 Nov 2018 03:08:47 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1541992116.58b059a17bf4be4b97d72b8e242f0365949deaa6.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Interpret.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 58b059a17bf4be4b97d72b8e242f0365949deaa6 X-VCS-Branch: master Date: Mon, 12 Nov 2018 03:08:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 10ca56c3-9b6f-4d10-a6bf-dc394b000477 X-Archives-Hash: 51004e1631a051e2205f8f17fe0aa112 commit: 58b059a17bf4be4b97d72b8e242f0365949deaa6 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Nov 12 03:08:36 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Nov 12 03:08:36 2018 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=58b059a1 grs/Interpret.py: fix typo Signed-off-by: Anthony G. Basile gentoo.org> grs/Interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Interpret.py b/grs/Interpret.py index 74d04e3..422357d 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -247,7 +247,7 @@ class Interpret(Daemon): elif verb == 'netbootit': # 'netbootit' can either be just a 'verb', 'verb obj' or 'verb obj obj' if len(objs) == 2: - semantic_action(_line, objs, 2, _nb.netbootit, objs[0], obj[1]) + semantic_action(_line, objs, 2, _nb.netbootit, objs[0], objs[1]) elif len(objs) == 1: semantic_action(_line, objs, 1, _nb.netbootit, objs[0]) else: