From e7654d597a1424db84f7d7f78c7f80b721871c0d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 22 Oct 2019 16:06:40 +0800 Subject: [PATCH] bugfix --- sqlor/crud.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sqlor/crud.py b/sqlor/crud.py index 4afa923..53802bc 100755 --- a/sqlor/crud.py +++ b/sqlor/crud.py @@ -278,9 +278,11 @@ class CRUD(object): data = await pagingdata(self.dbname,data,**kw) print('here5') else: + print('here6') data = await retrieve(self.dbname,data,**kw) + print('here7') data = self.oa.execute(self.dbname+'_'+self.tablename,'afterRetrieve',data) - print('here6') + print('here8') return data print('here1')