diff options
author | David Baker <dave@matrix.org> | 2016-03-11 14:38:23 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-03-11 14:38:23 +0000 |
commit | 2dee03aee513eddaf50a4249747beac67445b3cd (patch) | |
tree | 9ae6954739bdcd6f8f9a664cbc85902b15910008 | |
parent | Make select more sensible when dseleting access tokens, rename pusher deletio... (diff) | |
download | synapse-2dee03aee513eddaf50a4249747beac67445b3cd.tar.xz |
more pep8
-rw-r--r-- | synapse/storage/registration.py | 2 |
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: |