From 82ff94eb2e1beb286155e6d82aa02f579b0b4322 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 12 Aug 2025 14:15:21 +0800 Subject: [PATCH] bugfix --- filemgr/filemgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filemgr/filemgr.py b/filemgr/filemgr.py index 220dae7..b916586 100644 --- a/filemgr/filemgr.py +++ b/filemgr/filemgr.py @@ -119,7 +119,7 @@ class FileMgr: self.file_deleted(request, delrecs, u.userid) async def _del_folder(self, sor, id, ownerid): - await folders = await sor.R('folder', {'id': id}) + folders = await sor.R('folder', {'id': id}) if len(fodlers) == 0: e = Exception(f'folder({id=}) not found') exception(f'{e=}\n{format_exc()}')