summary refs log tree commit diff
path: root/synapse/storage/event_push_actions.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-04-06 16:50:47 +0100
committerDavid Baker <dave@matrix.org>2016-04-06 16:50:47 +0100
commit0fd1cd24003b54e475985cf90db4223c3098375d (patch)
tree149540afd88c81a9bcb5c24b311995f732c38f41 /synapse/storage/event_push_actions.py
parentMake pushers use the event_push_actions table instead of listening on an even... (diff)
downloadsynapse-0fd1cd24003b54e475985cf90db4223c3098375d.tar.xz
pep8
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r--synapse/storage/event_push_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py
index 5f61743e34..4d72e4a85e 100644
--- a/synapse/storage/event_push_actions.py
+++ b/synapse/storage/event_push_actions.py
@@ -144,7 +144,7 @@ class EventPushActionsStore(SQLBaseStore):
             txn.execute("SELECT MAX(stream_ordering) FROM event_push_actions")
             return txn.fetchone()
         result = yield self.runInteraction(
-                "get_latest_push_action_stream_ordering", f
+            "get_latest_push_action_stream_ordering", f
         )
         defer.returnValue(result[0] or 0)