diff options
| author | 2019-02-24 08:04:35 +0000 | |
|---|---|---|
| committer | 2019-02-24 08:04:35 +0000 | |
| commit | fdce6ef7a6cb3f508e2b7bceef1195815abd1e73 (patch) | |
| tree | 3eb9bd08e904cf263266081d963ef0a86ca158dd /modules | |
| parent | Fire preprocess.send per-command - use this to only strip colors from ParsedLine (diff) | |
| signature | ||
We now need to .send( an IRCLine.ParseLine in perform.py
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/perform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/perform.py b/modules/perform.py index 95e4dcc8..f2de9a86 100644 --- a/modules/perform.py +++ b/modules/perform.py @@ -10,4 +10,4 @@ class Module(ModuleManager.BaseModule): command[j] = part.replace("%nick%", event["server" ].nickname) command = "%".join(command) - event["server"].send(command) + event["server"].send(utils.irc.parse_line(command)) |
