From 6d2bb1eab812901dd60c0e363de2278cf107a0ae Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Fri, 1 Apr 2016 00:21:57 +0100 Subject: Fix core handlers, broken in the previous commit. --- poezio/tabs/adhoc_commands_list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/tabs/adhoc_commands_list.py') diff --git a/poezio/tabs/adhoc_commands_list.py b/poezio/tabs/adhoc_commands_list.py index 10ebf22b..66f0691a 100644 --- a/poezio/tabs/adhoc_commands_list.py +++ b/poezio/tabs/adhoc_commands_list.py @@ -26,8 +26,8 @@ class AdhocCommandsListTab(ListTab): if not self.listview or not self.listview.get_selected_row(): return node, name, jid = self.listview.get_selected_row() - session = {'next': self.core.on_next_adhoc_step, - 'error': self.core.on_adhoc_error} + session = {'next': self.core.handler.next_adhoc_step, + 'error': self.core.handler.adhoc_error} self.core.xmpp.plugin['xep_0050'].start_command(jid, node, session) def get_columns_sizes(self): -- cgit v1.2.3