From 8eef9a612daea92853f41ff356508f7802da79b0 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 11 Nov 2018 12:45:10 +0000 Subject: [PATCH] Readd line I accidentally removed in src/Database.py --- src/Database.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Database.py b/src/Database.py index 28d86960..b54eea0d 100644 --- a/src/Database.py +++ b/src/Database.py @@ -310,6 +310,7 @@ class Database(object): cursor = self.cursor() with self._lock: cursor.execute(query, params) + value = fetch_func(cursor) end = time.monotonic() total_milliseconds = (end - start) * 1000