This commit is contained in:
git-bruh 2021-01-24 13:46:50 +05:30 committed by GitHub
parent 333e670e0e
commit 4eb73aa87f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -339,7 +339,7 @@ class DiscordClient(discord.ext.commands.Bot):
# Escape stuff
for replace in ("<", ">"):
content = content.replace(replace, f"\{replace}")
content = content.replace(replace, f"\\{replace}")
# Append attachments to message.
for attachment in message.attachments: