Browse Source

[commands] Make HelpFormatter ignore hidden commands for max_width.

pull/282/head
PapyrusThePlant 9 years ago
committed by Rapptz
parent
commit
3ec9b7fb97
  1. 2
      discord/ext/commands/formatter.py

2
discord/ext/commands/formatter.py

@ -160,7 +160,7 @@ class HelpFormatter:
try:
commands = self.command.commands if not self.is_cog() else self.context.bot.commands
if commands:
return max(map(lambda c: len(c.name), commands.values()))
return max(map(lambda c: len(c.name) if self.show_hidden or not c.hidden else 0, commands.values()))
return 0
except AttributeError:
return len(self.command.name)

Loading…
Cancel
Save