We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa543c commit 5f3bd34Copy full SHA for 5f3bd34
cogs/utility.py
@@ -67,7 +67,7 @@ async def format_cog_help(self, cog):
67
return embeds
68
69
def process_help_msg(self, help_: str):
70
- return help_.format(prefix=self.clean_prefix)
+ return help_.format(prefix=self.clean_prefix) if help_ else 'No help message.'
71
72
async def send_bot_help(self, mapping):
73
embeds = []
@@ -124,7 +124,8 @@ async def send_group_help(self, group):
124
for i, command in enumerate(
125
await self.filter_commands(group.commands, sort=True, key=lambda c: c.name)
126
):
127
- # Bug: fmt may run over the embed limit
+ # BUG: fmt may run over the embed limit
128
+ # TODO: paginate this
129
if length == i + 1: # last
130
branch = '└─'
131
else:
0 commit comments