Readd line I accidentally removed in src/Database.py

This commit is contained in:
jesopo 2018-11-11 12:45:10 +00:00
parent 245c4599dd
commit 8eef9a612d

View file

@ -310,6 +310,7 @@ class Database(object):
cursor = self.cursor() cursor = self.cursor()
with self._lock: with self._lock:
cursor.execute(query, params) cursor.execute(query, params)
value = fetch_func(cursor)
end = time.monotonic() end = time.monotonic()
total_milliseconds = (end - start) * 1000 total_milliseconds = (end - start) * 1000