diff --git a/sqlor/sor.py b/sqlor/sor.py index 2cec090..6bdad6d 100755 --- a/sqlor/sor.py +++ b/sqlor/sor.py @@ -310,8 +310,8 @@ class SQLor(object): ret = await cur.fetchone() debug(f'coro:sor.fetchone()={ret}, {type(ret)}') return ret - f = awaitify(cur.fetchone) - ret = await f() + # f = awaitify(cur.fetchone) + ret = cur.fetchone() debug(f'func:sor.fetchone()={ret}, {type(ret)}') return ret