From c1be52847bae48215a8e5589b3a3b94bc1bb913c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Thu, 31 Mar 2016 23:24:58 +0100 Subject: Fix core commands, broken in the previous commit. --- poezio/tabs/xmltab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/tabs/xmltab.py') diff --git a/poezio/tabs/xmltab.py b/poezio/tabs/xmltab.py index b063ad35..331c1558 100644 --- a/poezio/tabs/xmltab.py +++ b/poezio/tabs/xmltab.py @@ -203,7 +203,7 @@ class XMLTab(Tab): def command_filter_id(self, args): """/filter_id """ if args is None: - return self.core.command_help('filter_id') + return self.core.command.help('filter_id') self.update_filters(matcher.MatcherId(args[0])) self.refresh() @@ -234,7 +234,7 @@ class XMLTab(Tab): def command_dump(self, args): """/dump """ if args is None: - return self.core.command_help('dump') + return self.core.command.help('dump') if self.filters: xml = self.filtered_buffer.messages[:] else: -- cgit v1.2.3