From 98fe6e2b0e64cb91ab7c3078ec28a5c4335e02ec Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 19 Oct 2025 16:42:57 +0800 Subject: [PATCH] bugfix --- sqlor/sor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):