summary refs log tree commit diff
path: root/synapse/storage/registration.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-03-11 14:38:23 +0000
committerDavid Baker <dave@matrix.org>2016-03-11 14:38:23 +0000
commit2dee03aee513eddaf50a4249747beac67445b3cd (patch)
tree9ae6954739bdcd6f8f9a664cbc85902b15910008 /synapse/storage/registration.py
parentMake select more sensible when dseleting access tokens, rename pusher deletio... (diff)
downloadsynapse-2dee03aee513eddaf50a4249747beac67445b3cd.tar.xz
more pep8
Diffstat (limited to 'synapse/storage/registration.py')
-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: