diff --git a/discord/ext/commands/formatter.py b/discord/ext/commands/formatter.py index 070578ec4..820a25294 100644 --- a/discord/ext/commands/formatter.py +++ b/discord/ext/commands/formatter.py @@ -364,8 +364,10 @@ class HelpFormatter: self._add_subcommands_to_page(max_width, commands) else: - self._paginator.add_line('Commands:') - self._add_subcommands_to_page(max_width, sorted(filtered)) + filtered = sorted(filtered) + if filtered: + self._paginator.add_line('Commands:') + self._add_subcommands_to_page(max_width, filtered) # add the ending note self._paginator.add_line()