From 99ef9b20b2c652830e659b5ff2121c3f5469edca Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 19 Oct 2025 12:03:40 +0800 Subject: [PATCH] bugfix --- sqlor/mysqlor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlor/mysqlor.py b/sqlor/mysqlor.py index b1e6091..5e07240 100755 --- a/sqlor/mysqlor.py +++ b/sqlor/mysqlor.py @@ -153,7 +153,7 @@ WHERE dbdesc = self.dbdesc self.conn = await aiomysql.connect(**dbdesc) self.cur = await self.conn.cursor() - aelf.dbname = dbdesc.get('db') + self.dbname = dbdesc.get('db') async def close(self): await self.cursor.close()