aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/seasons/evergreen/error_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/error_handler.py b/bot/seasons/evergreen/error_handler.py
index c60e33ee..7774f06e 100644
--- a/bot/seasons/evergreen/error_handler.py
+++ b/bot/seasons/evergreen/error_handler.py
@@ -59,7 +59,7 @@ class CommandErrorHandler(commands.Cog):
remaining_minutes, remaining_seconds = divmod(error.retry_after, 60)
return await ctx.send(
- f"This command is on cooldown, please retry in "
+ "This command is on cooldown, please retry in "
f"{int(remaining_minutes)} minutes {math.ceil(remaining_seconds)} seconds."
)