aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-08-30 11:15:57 +0100
committerGravatar jesopo2018-08-30 11:15:57 +0100
commitebd3ab47c8a8d94bb805c7597e33e43aed43e21d (patch)
tree3dd2b2729d0b67322622a4544c7a7839307da3c5
parentAdd missing ":" in IRCLineHandler.LineHandler.mode() (diff)
signature
Add missing "," in channel_op.py
-rw-r--r--modules/channel_op.py2
1 files changed, 1 insertions, 1 deletions
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"