From ba5c07b5c224992fe311c622e3efe6c67c44e0a6 Mon Sep 17 00:00:00 2001 From: DerpDays <34582078+DerpDays@users.noreply.github.com> Date: Sun, 14 Oct 2018 21:58:01 +0100 Subject: Forgot some commas --- bot/cogs/error_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bot/cogs/error_handler.py') diff --git a/bot/cogs/error_handler.py b/bot/cogs/error_handler.py index 7d881617..e37e8272 100644 --- a/bot/cogs/error_handler.py +++ b/bot/cogs/error_handler.py @@ -17,12 +17,12 @@ class CommandErrorHandler: return if isinstance(error, commands.UserInputError): return await ctx.send( - ":no_entry: The command you specified failed to run." + ":no_entry: The command you specified failed to run.", "This is because the arguments you provided were invalid." ) if isinstance(error, commands.CommandOnCooldown): return await ctx.send( - "This command is on cooldown," + "This command is on cooldown,", "please retry in {}s.".format(math.ceil(error.retry_after)) ) if isinstance(error, commands.DisabledCommand): -- cgit v1.2.3