0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00
This commit is contained in:
KubaPro010
2025-11-13 17:35:42 +01:00
parent a6778af514
commit c12b802a01

View File

@@ -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: