diff --git a/discord/utils.py b/discord/utils.py index e277e56c2..0882250c7 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -405,4 +405,4 @@ def escape_mentions(text): :class:`str` The text with the mentions removed. """ - return re.sub(r'@(everyone|here|[!&]?[0-9]{17,21})', r'@\u200b\1', text) + return re.sub(r'@(everyone|here|[!&]?[0-9]{17,21})', '@\u200b\\1', text)