summary refs log tree commit diff
path: root/synapse/storage/pusher.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-04-12 13:35:08 +0100
committerDavid Baker <dave@matrix.org>2016-04-12 13:35:08 +0100
commit7b39bcdaae70e3a167d38bb1cdf8e6d4d95f0cca (patch)
tree39eba8f3aae7a23ec0a4e13793892d2d9daab0b1 /synapse/storage/pusher.py
parentSplit into separate servlet classes (diff)
downloadsynapse-7b39bcdaae70e3a167d38bb1cdf8e6d4d95f0cca.tar.xz
Mis-named function
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r--synapse/storage/pusher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py
index 11feab72de..90ec06809a 100644
--- a/synapse/storage/pusher.py
+++ b/synapse/storage/pusher.py
@@ -76,7 +76,7 @@ class PusherStore(SQLBaseStore):
         defer.returnValue(rows)
 
     @defer.inlineCallbacks
-    def get_pushers_by_app_user_id(self, user_id):
+    def get_pushers_by_user_id(self, user_id):
         def r(txn):
             sql = (
                 "SELECT * FROM pushers"