From 6e0461a4c78e74a006887ae4e4ccfef5ac3e5de1 Mon Sep 17 00:00:00 2001 From: "Bora M. Alper" Date: Mon, 5 Jun 2017 12:42:54 +0300 Subject: [PATCH] small stylistic change --- magneticod/magneticod/persistence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magneticod/magneticod/persistence.py b/magneticod/magneticod/persistence.py index d16316f..3d80bf1 100644 --- a/magneticod/magneticod/persistence.py +++ b/magneticod/magneticod/persistence.py @@ -57,7 +57,7 @@ class Database: "size INTEGER NOT NULL," "path TEXT NOT NULL" ");") - db_conn.execute("CREATE INDEX IF NOT EXISTS file_info_hash_index on files (torrent_id);") + db_conn.execute("CREATE INDEX IF NOT EXISTS file_info_hash_index ON files (torrent_id);") return db_conn