From c12b802a01fd37943d6e53dbcab392b5e0ae9d18 Mon Sep 17 00:00:00 2001 From: KubaPro010 <132459354+KubaPro010@users.noreply.github.com> Date: Thu, 13 Nov 2025 17:35:42 +0100 Subject: [PATCH] fix bug --- radioPlayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radioPlayer.py b/radioPlayer.py index 7a0bb03..6f80991 100644 --- a/radioPlayer.py +++ b/radioPlayer.py @@ -112,7 +112,7 @@ class PlaylistParser: for arg in args: key, val = arg.split("=", 1) arguments[key] = val - out.append(([f for f in Path().glob(line) if Path(f).is_file()], arguments)) + out.append(([f for f in glob.glob(line) if Path(f).is_file()], arguments)) return global_arguments, out class RadioPlayer: