aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-11-11 22:08:36 -0500
committerAnthony G. Basile <blueness@gentoo.org>2018-11-11 22:08:36 -0500
commit58b059a17bf4be4b97d72b8e242f0365949deaa6 (patch)
tree6385b40d3aa24604a6595c8ea384d15b2c84cdf8
parentgrs/TarIt.py: fix typo (diff)
downloadgrss-0.7.tar.gz
grss-0.7.tar.bz2
grss-0.7.zip
grs/Interpret.py: fix typov0.7
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rw-r--r--grs/Interpret.py2
1 files changed, 1 insertions, 1 deletions
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: