diff options
author | 2015-07-07 16:51:31 -0400 | |
---|---|---|
committer | 2015-07-07 16:51:31 -0400 | |
commit | 716c072bea1aba043bdc9913b09267b42f837f80 (patch) | |
tree | 13bed9396987c49c62eacbd107cab5c01366b4a0 | |
parent | grs/TarIt.py: expand 'tarit' grammar. (diff) | |
download | grss-716c072bea1aba043bdc9913b09267b42f837f80.tar.gz grss-716c072bea1aba043bdc9913b09267b42f837f80.tar.bz2 grss-716c072bea1aba043bdc9913b09267b42f837f80.zip |
grs/Interpret.py: fix typo
-rw-r--r-- | grs/Interpret.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grs/Interpret.py b/grs/Interpret.py index ae9c858..b813766 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -199,10 +199,10 @@ class Interpret(Daemon): # 'tarit' can either be just a verb, # or a 'verb obj' pair. if obj: - smartlog(l, obj, True): + smartlog(l, obj, True) bi.tarit(obj) else: - smartlog(l, obj, False): + smartlog(l, obj, False) bi.tarit() elif verb == 'hashit': if smartlog(l, obj, False): |