From f330e866bbced8403f2189f12287e38007701287 Mon Sep 17 00:00:00 2001 From: Brennen Raimer <5969754+norweeg@users.noreply.github.com> Date: Mon, 4 May 2026 12:12:05 -0400 Subject: [PATCH] do not prematurely resolve relative paths --- relative-playlist-maker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relative-playlist-maker.py b/relative-playlist-maker.py index ff3856b..b15fced 100644 --- a/relative-playlist-maker.py +++ b/relative-playlist-maker.py @@ -10,7 +10,7 @@ def main(music_folder: Path): copyfile(m3u, m3u.with_suffix(".m3u.bak")) with m3u.open("r") as contents: - tracks = [Path(p).resolve() for p in contents.readlines()] + tracks = [Path(p) for p in contents.readlines()] if not all( music_folder in track.parents