summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-03-08 23:02:01 +0100
committermathieui <mathieui@mathieui.net>2016-03-08 23:02:01 +0100
commit0161f35f82337f56a8d01cd5dc7d6ea530ad43d9 (patch)
tree61b32a27e9034f8d8f994d243b2e917381cbabc9 /plugins
parent7d6ee0858501e22bf1ce6092a5e319467019507d (diff)
downloadpoezio-0161f35f82337f56a8d01cd5dc7d6ea530ad43d9.tar.gz
poezio-0161f35f82337f56a8d01cd5dc7d6ea530ad43d9.tar.bz2
poezio-0161f35f82337f56a8d01cd5dc7d6ea530ad43d9.tar.xz
poezio-0161f35f82337f56a8d01cd5dc7d6ea530ad43d9.zip
Fix the test plugin
(broken since slix)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/test.py b/plugins/test.py
index 0873ba10..db798684 100644
--- a/plugins/test.py
+++ b/plugins/test.py
@@ -5,7 +5,7 @@ class Plugin(BasePlugin):
def init(self):
self.api.add_command('plugintest', self.command_plugintest, 'Test command')
self.api.add_tab_command(tabs.MucTab, 'plugintest', self.command_tab_plugintest, 'Test command')
- self.api.add_sleek_event_handler('message', self.on_message)
+ self.api.add_slix_event_handler('message', self.on_message)
self.api.information("Plugin loaded")
def cleanup(self):