Skip to content
Snippets Groups Projects
Commit c2da3406 authored by David Baker's avatar David Baker
Browse files

Oops, missing comma

parent ccffb096
No related branches found
No related tags found
No related merge requests found
...@@ -256,7 +256,7 @@ class EventPushActionsStore(SQLBaseStore): ...@@ -256,7 +256,7 @@ class EventPushActionsStore(SQLBaseStore):
txn.execute( txn.execute(
"DELETE FROM event_push_actions " "DELETE FROM event_push_actions "
" WHERE user_id = ? AND room_id = ? AND " " 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) (user_id, room_id, topological_ordering, self.stream_ordering_month_ago)
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment