diff options
| author | 2018-11-05 18:30:14 +0000 | |
|---|---|---|
| committer | 2018-11-05 18:30:39 +0000 | |
| commit | d63115440dbf426063e0f5d813255295dc910837 (patch) | |
| tree | 309f51ae7b1e920a30149150ee96ab4297847cb0 /modules/perform.py | |
| parent | Pass 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.py | 2 |
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) |
