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/rest/client/v1/pusher.py | |
parent | Sign auth_chains when returned by /state/ requests (diff) | |
download | synapse-b085fac7353e1cd395b89f9334c8273a8e996f48.tar.xz |
Code-style fixes
Diffstat (limited to 'synapse/rest/client/v1/pusher.py')
-rw-r--r-- | synapse/rest/client/v1/pusher.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/v1/pusher.py b/synapse/rest/client/v1/pusher.py index e10d2576d2..80e9939b79 100644 --- a/synapse/rest/client/v1/pusher.py +++ b/synapse/rest/client/v1/pusher.py @@ -34,8 +34,8 @@ class PusherRestServlet(ClientV1RestServlet): pusher_pool = self.hs.get_pusherpool() if ('pushkey' in content and 'app_id' in content - and 'kind' in content and - content['kind'] is None): + and 'kind' in content and + content['kind'] is None): yield pusher_pool.remove_pusher( content['app_id'], content['pushkey'] ) |