diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-02-10 16:30:48 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-02-10 16:30:48 +0000 |
commit | b085fac7353e1cd395b89f9334c8273a8e996f48 (patch) | |
tree | 140b1a6279527dbcb5b81dbd392d75777b5b3e8a /synapse/push/__init__.py | |
parent | Sign auth_chains when returned by /state/ requests (diff) | |
download | synapse-b085fac7353e1cd395b89f9334c8273a8e996f48.tar.xz |
Code-style fixes
Diffstat (limited to 'synapse/push/__init__.py')
-rw-r--r-- | synapse/push/__init__.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py index 6f143a5df9..418a348a58 100644 --- a/synapse/push/__init__.py +++ b/synapse/push/__init__.py @@ -140,7 +140,7 @@ class Pusher(object): lambda x: ('[%s%s]' % (x.group(1) and '^' or '', re.sub(r'\\\-', '-', x.group(2)))), r) return r - + def _event_fulfills_condition(self, ev, condition, display_name, room_member_count): if condition['kind'] == 'event_match': if 'pattern' not in condition: @@ -170,8 +170,10 @@ class Pusher(object): return False if not display_name: return False - return re.search("\b%s\b" % re.escape(display_name), - ev['content']['body'], flags=re.IGNORECASE) is not None + return re.search( + "\b%s\b" % re.escape(display_name), ev['content']['body'], + flags=re.IGNORECASE + ) is not None elif condition['kind'] == 'room_member_count': if 'is' not in condition: |