diff options
| author | 2019-05-09 11:31:58 +0100 | |
|---|---|---|
| committer | 2019-05-09 11:31:58 +0100 | |
| commit | 511a1836bb451db253ff43e99e5da9da33fb53aa (patch) | |
| tree | 90efc515734c763acabfe21f642657fd9168ad28 /modules/line_handler/channel.py | |
| parent | Tokenize 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.py | 2 |
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([]) |
