From ed4188ff1c98f60ffb9641d7671786ccd7637f2d Mon Sep 17 00:00:00 2001 From: "Branden R. Williams" Date: Thu, 29 Aug 2024 09:49:33 -0500 Subject: [PATCH] Put the error message on the same line, Looks funny in Discord when you hit it with the extra spacing present. --- harambot/ui/modals.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/harambot/ui/modals.py b/harambot/ui/modals.py index 6449173..3a1488f 100644 --- a/harambot/ui/modals.py +++ b/harambot/ui/modals.py @@ -81,7 +81,6 @@ async def on_error( ) -> None: logger.exception(error) await interaction.response.send_message( - "Oops! Something went wrong with configuring your guild.\ - Please try again", + "Oops! Something went wrong with configuring your guild. Please try again.", ephemeral=True, )