dont escape <,>

This commit is contained in:
git-bruh 2021-02-08 14:51:05 +05:30
parent 9936b5cec8
commit 96ef420f28
No known key found for this signature in database
GPG key ID: E1475C50075ADCE6

View file

@ -355,10 +355,6 @@ class DiscordClient(discord.ext.commands.Bot):
# Replace emote IDs with names.
content = re.sub(regex, r":\g<1>:", content)
# Escape stuff
for replace in ("<", ">"):
content = content.replace(replace, f"\\{replace}")
# Append attachments to message.
for attachment in message.attachments:
content += f"\n{attachment.url}"