aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-03-26 14:18:51 +1000
committerGravatar GitHub <[email protected]>2019-03-26 14:18:51 +1000
commit81146976142f4ba794b474463758361cfe4e2577 (patch)
tree891431b53ca8ac645a4838bf387f35c68d964dd9
parentAdjust cog load logs for consistency, remove old setup function. (diff)
Remove unneeded fstring prefix.
-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."
)