Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: grs/
Date: Mon, 12 Nov 2018 03:08:52
Message-Id: 1541992116.58b059a17bf4be4b97d72b8e242f0365949deaa6.blueness@gentoo
1 commit: 58b059a17bf4be4b97d72b8e242f0365949deaa6
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 12 03:08:36 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 12 03:08:36 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=58b059a1
7
8 grs/Interpret.py: fix typo
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11
12 grs/Interpret.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/grs/Interpret.py b/grs/Interpret.py
16 index 74d04e3..422357d 100644
17 --- a/grs/Interpret.py
18 +++ b/grs/Interpret.py
19 @@ -247,7 +247,7 @@ class Interpret(Daemon):
20 elif verb == 'netbootit':
21 # 'netbootit' can either be just a 'verb', 'verb obj' or 'verb obj obj'
22 if len(objs) == 2:
23 - semantic_action(_line, objs, 2, _nb.netbootit, objs[0], obj[1])
24 + semantic_action(_line, objs, 2, _nb.netbootit, objs[0], objs[1])
25 elif len(objs) == 1:
26 semantic_action(_line, objs, 1, _nb.netbootit, objs[0])
27 else: