From ec91cbf3eda3fbc6970ecd32c2e19870f5b77083 Mon Sep 17 00:00:00 2001 From: amtoaer Date: Sat, 2 Dec 2023 00:51:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=A7=E7=BB=AD=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 068670c..d739c7a 100644 --- a/utils.py +++ b/utils.py @@ -24,7 +24,7 @@ async def aexists(path: Path) -> bool: async def amakedirs(path: Path, exist_ok=False) -> None: - await makedirs(path, parents=True, exist_ok=exist_ok) + await makedirs(path, exist_ok=exist_ok) def aopen(