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 8A602138330 for ; Sun, 14 Jan 2018 15:02:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9900E0920; Sun, 14 Jan 2018 15:02:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8F58AE0920 for ; Sun, 14 Jan 2018 15:02: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 1E96B335C48 for ; Sun, 14 Jan 2018 15:02:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7FB0196 for ; Sun, 14 Jan 2018 15:02: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: <1515942160.e98dba630d78e2dbd97b1e05df7a37b5f320a78c.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: e98dba630d78e2dbd97b1e05df7a37b5f320a78c X-VCS-Branch: master Date: Sun, 14 Jan 2018 15:02: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: 41b4c17d-3a9e-4340-847c-1b9edf67925d X-Archives-Hash: f5f412d14969dc665bcf6f375773f3f7 commit: e98dba630d78e2dbd97b1e05df7a37b5f320a78c Author: Anthony G. Basile gentoo org> AuthorDate: Sun Jan 14 15:02:40 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Jan 14 15:02:40 2018 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=e98dba63 grs/Interpret.py: fix bug in semantic interpreter grs/Interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Interpret.py b/grs/Interpret.py index 2f3d5a5..74d04e3 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, 1, _nb.netbootit, objs[0], obj[1]) + semantic_action(_line, objs, 2, _nb.netbootit, objs[0], obj[1]) elif len(objs) == 1: semantic_action(_line, objs, 1, _nb.netbootit, objs[0]) else: