From b9356e567770ae387f9a590d0e144b818473eb5f Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Tue, 1 Apr 2025 21:56:34 +0200 Subject: [PATCH] fix again --- radioPlaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radioPlaylist.py b/radioPlaylist.py index f5866f1..e74c756 100644 --- a/radioPlaylist.py +++ b/radioPlaylist.py @@ -161,7 +161,7 @@ def copy_current_file_to_all(playlists: dict, source_day: str, days: list[str], for period, is_present in source_periods.items(): target_set = playlists[target_day][period] - full_path = os.path.join(playlists_dir, current_file) + full_path = os.path.join(files_dir, current_file) if is_present: target_set.add(current_file)