diff options
| author | 2018-07-24 07:09:11 -0400 | |
|---|---|---|
| committer | 2018-07-24 07:09:11 -0400 | |
| commit | 08fb2084a19c1b2eae1fec70f59954ff1d7b8372 (patch) | |
| tree | cc8d2749cdf77e96e576ff6fdf55c1a9d6cb549c | |
| parent | Add command to edit infraction duration, show ID in infraction list (diff) | |
Remove old comments, some message cleanup
| -rw-r--r-- | bot/cogs/moderation.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bot/cogs/moderation.py b/bot/cogs/moderation.py index 16803bb98..4acce6962 100644 --- a/bot/cogs/moderation.py +++ b/bot/cogs/moderation.py @@ -428,11 +428,11 @@ class Moderation: return if not infraction_list: - await ctx.send(f":warning: No infractions matching \"{arg}\".") + await ctx.send(f":warning: No infractions matching `{arg}`.") return embed = Embed( - title=f"Infractions matching \"{arg}\" ({len(infraction_list)} total)", + title=f"Infractions matching `{arg}` ({len(infraction_list)} total)", colour=Colour.orange() ) @@ -559,7 +559,4 @@ def _silent_exception(future): def setup(bot): bot.add_cog(Moderation(bot)) - # Here we'll need to call a command I haven't made yet - # It'll check the expiry queue and automatically set up tasks for - # temporary bans, mutes, etc. log.info("Cog loaded: Moderation") |