summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-05-20 18:03:31 +0100
committerDavid Baker <dave@matrix.org>2016-05-20 18:03:31 +0100
commitc2da3406fcadefa3efbd302ae22a21c7ffbac9ce (patch)
tree2b12ad3ddcda2429179fd4500126b8a6e7bd120d
parentRemove stale line (diff)
downloadsynapse-c2da3406fcadefa3efbd302ae22a21c7ffbac9ce.tar.xz
Oops, missing comma
-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 cb38d5f525..88f9b4b642 100644
--- a/synapse/storage/event_push_actions.py
+++ b/synapse/storage/event_push_actions.py
@@ -256,7 +256,7 @@ class EventPushActionsStore(SQLBaseStore):
         txn.execute(
             "DELETE FROM event_push_actions "
             " WHERE user_id = ? AND room_id = ? AND "
-            " topological_ordering < ? AND stream_ordering < ?"
+            " topological_ordering < ? AND stream_ordering < ?",
             (user_id, room_id, topological_ordering, self.stream_ordering_month_ago)
         )