From 9eeebe1a9d91bb50d7f1ad53f9a544ca9f6090a8 Mon Sep 17 00:00:00 2001 From: Fletcher Boyd Date: Thu, 5 Sep 2013 06:30:58 +0800 Subject: [PATCH] Fix kicking with a reason in op.py --- plugins/op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/op.py b/plugins/op.py index c4902f0..bab1979 100755 --- a/plugins/op.py +++ b/plugins/op.py @@ -114,7 +114,7 @@ def kick(inp, chan=None, conn=None, notice=None): target = split[0] if len(split) > 1: reason = " ".join(split[1:]) - out = "KICK {} {}: {}".format(channel, target, reason) + out = "KICK {} {} :{}".format(channel, target, reason) else: out = "KICK {} {}".format(channel, target)