From c6d26216a6888a7fa5813e6db9e432293ae18938 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 18 Feb 2017 02:39:03 -0500 Subject: [PATCH] [commands] Fix bad logic in command list filtering. --- discord/ext/commands/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/formatter.py b/discord/ext/commands/formatter.py index 820a25294..c0ac67818 100644 --- a/discord/ext/commands/formatter.py +++ b/discord/ext/commands/formatter.py @@ -266,7 +266,7 @@ class HelpFormatter: return False iterator = self.command.commands.items() if not self.is_cog() else self.context.bot.commands.items() - if not self.show_check_failure: + if self.show_check_failure: return filter(sane_no_suspension_point_predicate, iterator) # Gotta run every check and verify it