From d7ffaa44a24c8c8e06af3dc42f9b0f1694885656 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 11 Aug 2016 22:38:00 +0200 Subject: Fix /help --- poezio/core/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 84b60a3e..c4a88c5a 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -43,7 +43,7 @@ class CommandCore: color = dump_tuple(get_theme().COLOR_HELP_COMMANDS) acc = [] buff = ['Global commands:'] - for name, command in enumerate(self.core.commands): + for name, command in self.core.commands.items(): if isinstance(command, Command): acc.append(' \x19%s}%s\x19o - %s' % ( color, @@ -56,7 +56,7 @@ class CommandCore: acc = [] buff.append('Tab-specific commands:') tab_commands = self.core.current_tab().commands - for name, command in enumerate(tab_commands): + for name, command in tab_commands.items(): if isinstance(command, Command): acc.append(' \x19%s}%s\x19o - %s' % ( color, -- cgit v1.2.3