summary refs log tree commit diff
path: root/synapse/storage/registration.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-01-07 10:15:35 +0000
committerDavid Baker <dave@matrix.org>2016-01-07 10:15:35 +0000
commitdaadcf36c0bad93220d4fa422dce0c5740f63e3d (patch)
tree369adac4a1d76b13045e6050f5678092289a0c1a /synapse/storage/registration.py
parentmore commas (diff)
downloadsynapse-daadcf36c0bad93220d4fa422dce0c5740f63e3d.tar.xz
This comma is actually important
Diffstat (limited to '')
-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 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])