Changed No Category to Misc., fixed source/about formatting

This commit is contained in:
Adriene Hutchins 2020-03-02 15:17:32 -05:00
parent 05dae3d019
commit 00065351f2
2 changed files with 3 additions and 2 deletions

View File

@ -80,7 +80,7 @@ class Core(commands.Cog):
msg += "**Source Code:** _<https://github.com/taciturasa/searchbot-discord>_\n"
msg += "**Support Server:** _<https://discord.gg/4BpReNV>_\n"
msg += "_Note: Please attempt to contact the hoster of any separate instances before this server._\n\n"
msg += f"_See **{ctx.prefix}** `help` for help, `invite` to add the bot, and `stats` for statistics._"
msg += f"_See **{ctx.prefix}**`help` for help, `invite` to add the bot, and `stats` for statistics._"
await ctx.send(msg)

View File

@ -16,6 +16,7 @@ class TaciHelpCommand(commands.MinimalHelpCommand):
super().__init__(**options)
self.command_attrs['help'] = "Find more assistance on this bot."
self.subcommands_heading = "Subcommands"
self.no_category = "Miscellaneous"
def get_opening_note(self):
"""Provides the header for all help commands."""
@ -124,7 +125,7 @@ class TaciHelpCommand(commands.MinimalHelpCommand):
self.paginator.add_line(note, empty=True)
# Gets the category for each command in the bot
no_category = '\u200b{0.no_category}'.format(self)
no_category = f"\u200b{self.no_category}"
def get_category(command, *, no_category=no_category):
cog = command.cog
if cog is not None: