Merge pull request #139 from thenoodle68/develop

Fix kicking with a reason in op.py
This commit is contained in:
Luke Rogers 2013-09-04 15:33:39 -07:00
commit 8b23ba9c12

View file

@ -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)