aboutsummaryrefslogtreecommitdiff
path: root/modules/perform.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-24 08:04:35 +0000
committerGravatar jesopo2019-02-24 08:04:35 +0000
commitfdce6ef7a6cb3f508e2b7bceef1195815abd1e73 (patch)
tree3eb9bd08e904cf263266081d963ef0a86ca158dd /modules/perform.py
parentFire 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/perform.py')
-rw-r--r--modules/perform.py2
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))