commit: 58b059a17bf4be4b97d72b8e242f0365949deaa6
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 12 03:08:36 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> 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 <blueness <AT> 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: