From 3c338aa21e9f035001408a60ae1e94a5a43b5095 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 7 Mar 2019 12:22:46 +0100 Subject: [PATCH] Fix indentation error. --- plomlombot.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plomlombot.py b/plomlombot.py index f46a0b1..7e0196e 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -214,12 +214,12 @@ def handle_command(command, argument, notice, target, session): tokens = [] 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 - (tokens[0] == "offset-search" and - ((not len(tokens) > 2) or (not tokens[1].isdigit())))): - help() + if (len(tokens) == 1 and not tokens[0].isdigit()) or \ + (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() return if not os.access(session.quotesfile, os.F_OK): notice("no quotes available") -- 2.30.2