Use raw string for regex here, otherwise \b is the backspace character. Fixes displayname matching.

This commit is contained in:
David Baker 2015-10-08 11:22:15 +01:00
parent db6e1e1fe3
commit 91482cd6a0

View file

@ -186,7 +186,7 @@ class Pusher(object):
if not display_name:
return False
return re.search(
"\b%s\b" % re.escape(display_name), ev['content']['body'],
r"\b%s\b" % re.escape(display_name), ev['content']['body'],
flags=re.IGNORECASE
) is not None