diff options
| -rw-r--r-- | bot/cogs/error_handler.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/bot/cogs/error_handler.py b/bot/cogs/error_handler.py index d67261fc6..07b93283d 100644 --- a/bot/cogs/error_handler.py +++ b/bot/cogs/error_handler.py @@ -124,6 +124,8 @@ class ErrorHandler(Cog):              await ctx.invoke(*help_command)          elif isinstance(e, errors.BadUnionArgument):              await ctx.send(f"Bad argument: {e}\n```{e.errors[-1]}```") +        elif isinstance(e, errors.ArgumentParsingError): +            await ctx.send(f"Argument parsing error: {e}")          else:              await ctx.send("Something about your input seems off. Check the arguments:")              await ctx.invoke(*help_command) | 
