aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar janine9vn <[email protected]>2020-12-11 17:11:41 -0500
committerGravatar Janine <[email protected]>2020-12-11 22:08:18 -0500
commitf493699a4a076bebcd69404be57c3a32da5a22a1 (patch)
tree9e021d43a3f7e58831261687d8bec954d4fe5683 /bot
parentRemove re-raising the error (diff)
Remove extra please
Please -= 1
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/christmas/advent_of_code/_cog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/christmas/advent_of_code/_cog.py b/bot/exts/christmas/advent_of_code/_cog.py
index b6462ab2..90d92fc1 100644
--- a/bot/exts/christmas/advent_of_code/_cog.py
+++ b/bot/exts/christmas/advent_of_code/_cog.py
@@ -374,5 +374,5 @@ class AdventOfCode(commands.Cog):
async def cog_command_error(self, ctx: commands.Context, error: Exception) -> None:
"""Custom error handler if an advent of code command was posted in the wrong channel."""
if isinstance(error, InChannelCheckFailure):
- await ctx.send(f":x: Please use <#{Channels.advent_of_code_commands}> for aoc commands instead, please.")
+ await ctx.send(f":x: Please use <#{Channels.advent_of_code_commands}> for aoc commands instead.")
error.handled = True