This comma is actually important

This commit is contained in:
David Baker 2016-01-07 10:15:35 +00:00
parent 823b679232
commit daadcf36c0

View File

@ -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])