diff options
author | David Baker <dave@matrix.org> | 2016-01-07 10:15:35 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-01-07 10:15:35 +0000 |
commit | daadcf36c0bad93220d4fa422dce0c5740f63e3d (patch) | |
tree | 369adac4a1d76b13045e6050f5678092289a0c1a /synapse/storage/registration.py | |
parent | more commas (diff) | |
download | synapse-daadcf36c0bad93220d4fa422dce0c5740f63e3d.tar.xz |
This comma is actually important
Diffstat (limited to 'synapse/storage/registration.py')
-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 a52b67013b..ece71f2ee8 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -103,7 +103,7 @@ class RegistrationStore(SQLBaseStore): if was_guest: txn.execute("UPDATE users SET" " password_hash = ?," - " upgrade_ts = ?" + " upgrade_ts = ?," " is_guest = ?" " WHERE name = ?", [password_hash, now, make_guest, user_id]) |