aboutsummaryrefslogtreecommitdiff
path: root/modules/line_handler/channel.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-09 11:31:58 +0100
committerGravatar jesopo2019-05-09 11:31:58 +0100
commit511a1836bb451db253ff43e99e5da9da33fb53aa (patch)
tree90efc515734c763acabfe21f642657fd9168ad28 /modules/line_handler/channel.py
parentTokenize IRC data as soon as it comes out of IRCServer (diff)
signature
Only split NAMES reply at literal space, .split() is overzealous
Diffstat (limited to 'modules/line_handler/channel.py')
-rw-r--r--modules/line_handler/channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/line_handler/channel.py b/modules/line_handler/channel.py
index ad8edf71..6976fcc1 100644
--- a/modules/line_handler/channel.py
+++ b/modules/line_handler/channel.py
@@ -29,7 +29,7 @@ def handle_333(events, event):
def handle_353(event):
channel = event["server"].channels.get(event["args"][2])
- nicknames = event["args"].get(3).split()
+ nicknames = event["args"].get(3).split(" ")
for nickname in nicknames:
modes = set([])