diff options
author | David Baker <dave@matrix.org> | 2016-05-20 18:03:31 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-05-20 18:03:31 +0100 |
commit | c2da3406fcadefa3efbd302ae22a21c7ffbac9ce (patch) | |
tree | 2b12ad3ddcda2429179fd4500126b8a6e7bd120d | |
parent | Remove stale line (diff) | |
download | synapse-c2da3406fcadefa3efbd302ae22a21c7ffbac9ce.tar.xz |
Oops, missing comma
-rw-r--r-- | synapse/storage/event_push_actions.py | 2 |
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) ) |