Oops, missing comma

pull/795/head
David Baker 2016-05-20 18:03:31 +01:00
parent ccffb0965d
commit c2da3406fc
1 changed files with 1 additions and 1 deletions

View File

@ -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)
)