From e829b39683f8a87274f8da2777b743ae44b8c319 Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Sun, 2 Feb 2025 21:56:43 -0500 Subject: [PATCH] Changed method of adding extension for duplicate file check --- zotify/playable.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zotify/playable.py b/zotify/playable.py index aa7fa7c..fa6e718 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -87,7 +87,8 @@ class Playable: "{" + meta.name + "}", fix_filename(meta.string) ) file_path = library.joinpath(output).expanduser() - if file_path.with_suffix("." + ext).exists() and not replace: + file_path = Path(f'{file_path}.{ext}') + if file_path.exists() and not replace: raise FileExistsError("File already downloaded") else: file_path.parent.mkdir(parents=True, exist_ok=True)