diff options
author | 2019-03-26 14:18:51 +1000 | |
---|---|---|
committer | 2019-03-26 14:18:51 +1000 | |
commit | 81146976142f4ba794b474463758361cfe4e2577 (patch) | |
tree | 891431b53ca8ac645a4838bf387f35c68d964dd9 | |
parent | Adjust cog load logs for consistency, remove old setup function. (diff) |
Remove unneeded fstring prefix.
-rw-r--r-- | bot/seasons/evergreen/error_handler.py | 2 |
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."
)
|