diff --git a/sqlor/sor.py b/sqlor/sor.py index 9ec7d21..90d1e6b 100755 --- a/sqlor/sor.py +++ b/sqlor/sor.py @@ -324,7 +324,7 @@ class SQLor(object): fields = [i[0].lower() for i in cur.description] while True: rec = await self.fetchone(cur) - debug(f'{rec=}, {tpye(rec)}') + debug(f'{rec=}, {type(rec)}') if rec is None: break if isinstance(rec, dict):