From 521c0808e90322c6093a44b64e94254bcaf852ac Mon Sep 17 00:00:00 2001 From: tretrauit Date: Sat, 19 Feb 2022 19:05:19 +0700 Subject: [PATCH] Await AsyncPath.exists() Bump to 1.2.8-1 --- worthless/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worthless/installer.py b/worthless/installer.py index fa86440..1493e75 100644 --- a/worthless/installer.py +++ b/worthless/installer.py @@ -104,7 +104,7 @@ class Installer: file_path = AsyncPath(self.temp_path).joinpath(file_name) if overwrite: await file_path.unlink(missing_ok=True) - if file_path.exists(): + if await file_path.exists(): cur_len = len(await file_path.read_bytes()) params |= { "Range": f"bytes={cur_len}-{file_len if file_len else ''}"