From c48adc4bf2c4eb6e3370b53212bcc7f43385944a Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 7 Mar 2019 12:18:01 +0100 Subject: [PATCH] Fix syntax error. --- plomlombot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plomlombot.py b/plomlombot.py index c835d56..7f3d4e5 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -253,7 +253,7 @@ def handle_command(command, argument, notice, target, session): notice("skipped all quotes matching query") else: notice("found %s matches, showing max. 3, skipping %s" - %s (len(results), to_skip)) + % (len(results), to_skip)) for i in range(len(results)): if i >= to_skip and i < to_skip + 3: result = results[i] -- 2.30.2