From 50f7985c6d99a21dbbf2fd81fe0c040733df315c Mon Sep 17 00:00:00 2001 From: jesopo Date: Sat, 25 Jan 2020 11:21:55 +0000 Subject: [PATCH] !cunmute needs an `event` arg --- 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 80293c33..ddbb30bc 100644 --- a/modules/channel_op.py +++ b/modules/channel_op.py @@ -374,7 +374,7 @@ class Module(ModuleManager.BaseModule): @utils.kwarg("require_access", "cmute") @utils.kwarg("help", "Mute the current channel") @utils.kwarg("spec", "!r~channel") - def cunmute(self): + def cunmute(self, event): self._cunmute(event["spec"][0]) def _cunmute(self, channel):