From e5bf961ddbf22df9a899eb8ed5110975a690e1f5 Mon Sep 17 00:00:00 2001 From: OleSTEEP Date: Tue, 28 Jan 2025 21:17:57 +0300 Subject: [PATCH] vnrecode: fix dest path relativity --- vnrecode/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnrecode/params.py b/vnrecode/params.py index a20e9ce..18f43a6 100644 --- a/vnrecode/params.py +++ b/vnrecode/params.py @@ -71,7 +71,7 @@ class Params: if not source.exists(): print("Requested path does not exists. Exiting!") exit(255) - dest = Path(source.name + f"_compressed") + dest = Path(source.parent, source.name + f"_compressed") return cls( copy_unprocessed, force_compress, mimic_mode, hide_errors, webp_rgba, workers,