From ebd3ab47c8a8d94bb805c7597e33e43aed43e21d Mon Sep 17 00:00:00 2001 From: jesopo Date: Thu, 30 Aug 2018 11:15:57 +0100 Subject: [PATCH] Add missing "," in channel_op.py --- modules/channel_op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/channel_op.py b/modules/channel_op.py index b0f1c5ab..b488f224 100644 --- a/modules/channel_op.py +++ b/modules/channel_op.py @@ -27,7 +27,7 @@ class Module(object): ).hook(self.op, channel_only=True, require_mode="o", help="Give +o to a user", usage="[nickname]") bot.events.on("received").on("command").on("deop" - ).hook(self.deop, channel_only=True, require_mode="o" + ).hook(self.deop, channel_only=True, require_mode="o", help="Take +o from a user", usage="[nickname]") bot.events.on("received").on("command").on("voice"