From 16be68ed3cd86498392b4e2ca7afaac0a2132614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Mon, 3 Jan 2022 15:14:27 +0100 Subject: [PATCH] Remove the from markdown link --- discord_reminder_bot/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord_reminder_bot/main.py b/discord_reminder_bot/main.py index 6a61b62..2835a39 100644 --- a/discord_reminder_bot/main.py +++ b/discord_reminder_bot/main.py @@ -80,8 +80,8 @@ async def on_slash_command_error(ctx: SlashContext, ex: Exception): message = f"Error occurred during the execution of '/{ctx.name} {ctx.subcommand_name}': {ex}" await ctx.send( - f"{message}\nIf this persists, please make an issue on " - "[the GitHub repo](https://github.com/TheLovinator1/discord-reminder-bot/issues) or contact TheLovinator#9276", + f"{message}\nIf this persists, please make an issue on the" + "[GitHub repo](https://github.com/TheLovinator1/discord-reminder-bot/issues) or contact TheLovinator#9276", hidden=True, )