From 6203fd36c007f023f67d7f2849cf592e72bb22ea Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Wed, 15 Oct 2025 20:40:36 +0300 Subject: [PATCH] Comment out assignment of playlist_id in PlaylistDownloader initialization --- yt-playlist-main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt-playlist-main.py b/yt-playlist-main.py index a4f1977..f6c0ed4 100644 --- a/yt-playlist-main.py +++ b/yt-playlist-main.py @@ -148,7 +148,7 @@ class PlaylistDownloader: def __init__(self, config: ConfigLoader, playlist: dict, index: int): # Determine a friendly identifier for the playlist - playlist_id = playlist.get("url") or playlist.get("save_path") or f"playlist #{index+1}" + # playlist_id = playlist.get("url") or playlist.get("save_path") or f"playlist #{index+1}" # Check for missing or empty URL and distinguish videos vs playlists self.url = playlist.get("url")