diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2017-12-23 11:04:22 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2017-12-23 11:04:22 -0500 |
commit | 88b09b807c7c3f8e6da242eae864f9bc0c2daf33 (patch) | |
tree | ec05bf8c775a4e4ecf5f5f9a46aebf51911c3ad8 | |
parent | grs/Kernel.p: add arch on the kernel directive line (diff) | |
download | grss-88b09b807c7c3f8e6da242eae864f9bc0c2daf33.tar.gz grss-88b09b807c7c3f8e6da242eae864f9bc0c2daf33.tar.bz2 grss-88b09b807c7c3f8e6da242eae864f9bc0c2daf33.zip |
grs/Interpret.py: fix number of args for _ke.kernel()
-rw-r--r-- | grs/Interpret.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/Interpret.py b/grs/Interpret.py index 45eca5f..523cdda 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -227,7 +227,7 @@ class Interpret(Daemon): elif verb == 'pivot': semantic_action(_line, objs, 1, _pc.pivot, objs[0], _md) elif verb == 'kernel': - semantic_action(_line, objs, 0, _ke.kernel, objs[0]) + semantic_action(_line, objs, 1, _ke.kernel, objs[0]) elif verb == 'tarit': # 'tarit' can either be just a verb, or a 'verb obj' pair. if len(objs): |