aboutsummaryrefslogtreecommitdiff
path: root/modules/perform.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-05 18:30:14 +0000
committerGravatar jesopo2018-11-05 18:30:39 +0000
commitd63115440dbf426063e0f5d813255295dc910837 (patch)
tree309f51ae7b1e920a30149150ee96ab4297847cb0 /modules/perform.py
parentPass connection parameters around in their own object (IRCConnectionParameters) (diff)
signature
Fix the order of some connection params, add `alias` as a seperate argument to
IRCServer.Server
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 7bd1432f..cfae1d47 100644
--- a/modules/perform.py
+++ b/modules/perform.py
@@ -8,6 +8,6 @@ class Module(ModuleManager.BaseModule):
command = command.split("%%")
for j, part in enumerate(command[:]):
command[j] = part.replace("%nick%", event["server"
- ].original_nickname)
+ ].nickname)
command = "%".join(command)
event["server"].send(command)