diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/help_channels.py | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py index c70cb6ffb..875eb5330 100644 --- a/bot/cogs/help_channels.py +++ b/bot/cogs/help_channels.py @@ -269,7 +269,7 @@ class HelpChannels(Scheduler, commands.Cog):              log.trace(f"The clean name for `{channel}` is `{name}`")          except ValueError:              # If, for some reason, the channel name does not contain "help-" fall back gracefully -            log.info(f"Can't get clean name as `{channel}` does not follow the `{prefix}` naming convention.") +            log.info(f"Can't get clean name because `{channel}` isn't prefixed by `{prefix}`.")              name = channel.name          return name @@ -488,10 +488,6 @@ class HelpChannels(Scheduler, commands.Cog):              topic=AVAILABLE_TOPIC,          ) -        log.trace( -            f"Ensuring that all channels in `{self.available_category}` have " -            f"synchronized permissions after moving `{channel}` into it." -        )          self.report_stats()      async def move_to_dormant(self, channel: discord.TextChannel, caller: str) -> None: | 
