diff --git a/cogs/links.py b/cogs/links.py index 6a7eb5e..396cba7 100644 --- a/cogs/links.py +++ b/cogs/links.py @@ -30,7 +30,7 @@ class Links: snippet = re.sub('','', snippet) snippet = re.sub('','',snippet) snippet = re.sub('"','"',snippet) - await self.bot.say("Here is the best match I found with the query `{}`:\nURL: {}\n```\nSnippet: {}```".format(query, url, snippet)) + await self.bot.say("Here is the best match I found with the query `{}`:\nURL: {}\nSnippet: \n```\n{}```".format(query, url, snippet)) @commands.command() @checks.custom_perms(send_messages=True)