aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-11-08 16:15:58 +0000
committerGravatar jesopo2019-11-08 16:15:58 +0000
commitb4de61d009aa633c2c86626c93ed084eefdcab97 (patch)
treed9329f24f7085673060fc01caca2732c1001c70b /modules
parentsilently eat Control socket .send() failures (diff)
signature
JOIN keys should be comma separated too
Diffstat (limited to 'modules')
-rw-r--r--modules/channel_keys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_keys.py b/modules/channel_keys.py
index 93e58665..5380e6db 100644
--- a/modules/channel_keys.py
+++ b/modules/channel_keys.py
@@ -34,7 +34,7 @@ class Module(ModuleManager.BaseModule):
if key:
keys_out.append(key)
event["line"].args[0] = ",".join(channels_out)
- event["line"].args[1:] = keys_out
+ event["line"].args[1] = ",".join(keys_out)
@utils.hook("received.324")
@utils.hook("received.mode.channel")