From d69ca92abaf44ccab651e1ddaadf93a102c6789a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 23 Sep 2025 10:36:09 +0800 Subject: [PATCH] bugfix --- ahserver/filestorage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahserver/filestorage.py b/ahserver/filestorage.py index 2ab6768..c8c9c92 100644 --- a/ahserver/filestorage.py +++ b/ahserver/filestorage.py @@ -196,7 +196,7 @@ async def downloadfile(url, headers=None, params=None, data={}): f.write(chunk) return fpath except Exception as e: - exception(f'save {url} to {fpath} exception:{e}' + exception(f'save {url} to {fpath} exception:{e}') raise e async def base642file(b64str):