aboutsummaryrefslogtreecommitdiff
path: root/modules/perform.py
diff options
context:
space:
mode:
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 3dfe34d2..c04ea092 100644
--- a/modules/perform.py
+++ b/modules/perform.py
@@ -8,7 +8,7 @@ class Module(ModuleManager.BaseModule):
for j, part in enumerate(command[:]):
command[j] = part.replace("%nick%", server.nickname)
command = "%".join(command)
- server.send(utils.irc.parse_line(command))
+ server.send_raw(command)
@utils.hook("received.001", priority=EventManager.PRIORITY_URGENT)
def on_connect(self, event):