home · contact · privacy
Fix clause error.
[plomlombot-irc.git] / plomlombot.py
index 7e0196eaa04971aa2eee9d669405a804723e5ce0..8e2657c1a55de4a9f6ef9c481e8ecf703acac12a 100755 (executable)
@@ -215,12 +215,12 @@ def handle_command(command, argument, notice, target, session):
         else:
             tokens = argument.split(" ")
         if (len(tokens) == 1 and not tokens[0].isdigit()) or \
-           (tokens > 1 and
-            tokens[0] not in {"search", "offset-search"} or
+           (len(tokens) > 1 and
+            (tokens[0] not in {"search", "offset-search"} or
             (tokens[0] == "offset-search" and
-             ((not len(tokens) > 2) or (not tokens[1].isdigit())))):
+             ((not len(tokens) > 2) or (not tokens[1].isdigit()))))):
             help()
-           return
+            return
         if not os.access(session.quotesfile, os.F_OK):
             notice("no quotes available")
             return