summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/registration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py
index 3a050621d9..5d45f0c651 100644
--- a/synapse/storage/registration.py
+++ b/synapse/storage/registration.py
@@ -200,7 +200,7 @@ class RegistrationStore(SQLBaseStore):
             txn.execute(
                 "SELECT id, token FROM access_tokens "
                 "WHERE user_id = ? AND id not in LIMIT 50",
-                (user_id,except_token_ids)
+                (user_id, except_token_ids)
             )
             rows = txn.fetchall()
             for r in rows: