mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-20 03:36:25 +00:00
Fix incorrect order of fields in SQL statement.
My kingdom for a better SQL DSL. Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
parent
db242c7652
commit
decc5ff412
@ -406,5 +406,5 @@ class MagicFolderDB(BackupDB):
|
||||
self.cursor.execute("UPDATE local_files"
|
||||
" SET size=?, mtime=?, ctime=?, fileid=?, version=?"
|
||||
" WHERE path=?",
|
||||
(size, mtime, ctime, fileid, path, version))
|
||||
(size, mtime, ctime, fileid, version, path))
|
||||
self.connection.commit()
|
||||
|
Loading…
Reference in New Issue
Block a user