From: Daira Hopwood <daira@jacaranda.org>
Date: Wed, 19 Aug 2015 14:33:52 +0000 (+0100)
Subject: Fix incorrect order of fields in SQL statement.
X-Git-Url: https://git.rkrishnan.org/vdrive/index.html?a=commitdiff_plain;h=01be65f304352d44e372f27190d29d5379b98d64;p=tahoe-lafs%2Ftahoe-lafs.git

Fix incorrect order of fields in SQL statement.
My kingdom for a better SQL DSL.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
---

diff --git a/src/allmydata/backupdb.py b/src/allmydata/backupdb.py
index 20c0d950..f575c66f 100644
--- a/src/allmydata/backupdb.py
+++ b/src/allmydata/backupdb.py
@@ -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()