Typo in src/Database.py, 'total_millisecons' -> 'total_milliseconds'
This commit is contained in:
parent
1ec6d0ad40
commit
ae8aeaeef4
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ class Database(object):
|
||||||
end = time.monotonic()
|
end = time.monotonic()
|
||||||
total_milliseconds = (end - start) * 1000
|
total_milliseconds = (end - start) * 1000
|
||||||
self.log.trace("executed query in %fms: \"%s\" (params: %s)",
|
self.log.trace("executed query in %fms: \"%s\" (params: %s)",
|
||||||
[total_millisecons, printable_query, params])
|
[total_milliseconds, printable_query, params])
|
||||||
|
|
||||||
return value
|
return value
|
||||||
def execute_fetchall(self, query: str, params: typing.List=[]):
|
def execute_fetchall(self, query: str, params: typing.List=[]):
|
||||||
|
|
Loading…
Reference in a new issue