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 e3a2bbf commit 2d99efeCopy full SHA for 2d99efe
cogs/utility.py
@@ -47,7 +47,7 @@ async def format_cog_help(self, cog, *, no_cog=False):
47
else:
48
format_ = f"`[{perm_level}] {prefix + cmd.qualified_name}` "
49
50
- format_ += f"- {cmd.short_doc}\n" if not cmd.short_doc == "" else "- No description.\n"
+ format_ += f"- {cmd.short_doc}\n" if cmd.short_doc else "- *No description.*\n"
51
if not format_.strip():
52
continue
53
if len(format_) + len(formats[-1]) >= 1024:
0 commit comments