home · contact · privacy
Fix clause error.
[plomlombot-irc.git] / plomlombot.py
index f0f387e45a3d9c583efc23d8509d454291ac46b8..3b480682fc42062d6698f9fbdf9643bd54d55258 100755 (executable)
@@ -215,8 +215,8 @@ 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())))):
             help()