Browse Source

Escape backslashes in display name in `clean_prefix`

pull/4076/head
jack1142 5 years ago
committed by Rapptz
parent
commit
79276da17e
  1. 2
      discord/ext/commands/help.py

2
discord/ext/commands/help.py

@ -345,7 +345,7 @@ class HelpCommand:
# for this common use case rather than waste performance for the
# odd one.
pattern = re.compile(r"<@!?%s>" % user.id)
return pattern.sub("@%s" % user.display_name, self.context.prefix)
return pattern.sub("@%s" % user.display_name.replace('\\', r'\\'), self.context.prefix)
@property
def invoked_with(self):

Loading…
Cancel
Save