From a49891c761a61420b3bcace1f38e85279e615f08 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Mon, 8 Nov 2021 00:25:25 +0530 Subject: [PATCH] Fix bug in `--load-infojson` of playlists Fixes: https://github.com/yt-dlp/yt-dlp/issues/1514#issuecomment-962659529 --- yt_dlp/YoutubeDL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 0fbb3baa7..92e430fda 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -2985,7 +2985,7 @@ class YoutubeDL(object): return info_dict info_dict.setdefault('epoch', int(time.time())) remove_keys = {'__original_infodict'} # Always remove this since this may contain a copy of the entire dict - keep_keys = ['_type'], # Always keep this to facilitate load-info-json + keep_keys = ['_type'] # Always keep this to facilitate load-info-json if remove_private_keys: remove_keys |= { 'requested_formats', 'requested_subtitles', 'requested_entries',