From 1e162828f4b8c6d6790b7ab9b0fb2438ddbd3a29 Mon Sep 17 00:00:00 2001 From: Hydrus Date: Thu, 2 Jul 2015 13:27:13 -0500 Subject: [PATCH] Version 163a --- include/ClientDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ClientDB.py b/include/ClientDB.py index 5b1b712f..01d72870 100755 --- a/include/ClientDB.py +++ b/include/ClientDB.py @@ -3138,7 +3138,7 @@ class DB( HydrusDB.HydrusDB ): current_update_weight = 0 - pending_dict = HydrusData.BuildKeyToListDict( [ ( ( namespace_id, tag_id ), hash_id ) for ( namespace_id, tag_id, hash_id ) in self._c.execute( 'SELECT namespace_id, tag_id, hash_id FROM mappings INDEXED BY mappings_service_id_status_index WHERE service_id = ? AND status = ?;', ( service_id, HC.PENDING ) ) ] ) + pending_dict = HydrusData.BuildKeyToListDict( [ ( ( namespace_id, tag_id ), hash_id ) for ( namespace_id, tag_id, hash_id ) in self._c.execute( 'SELECT namespace_id, tag_id, hash_id FROM mappings INDEXED BY mappings_status_index WHERE service_id = ? AND status = ?;', ( service_id, HC.PENDING ) ) ] ) pending_chunks = []