commit: 88b09b807c7c3f8e6da242eae864f9bc0c2daf33 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Sat Dec 23 16:04:22 2017 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Sat Dec 23 16:04:22 2017 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=88b09b80
grs/Interpret.py: fix number of args for _ke.kernel() grs/Interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):