From fdf3694235da561bfc57dbfded16fb6d25c57d49 Mon Sep 17 00:00:00 2001 From: dennishofmann Date: Mon, 1 Feb 2016 22:38:59 +0100 Subject: [PATCH] force id to be string for download_archive --- youtube_dl/YoutubeDL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 50228bb32..22f1c0a0f 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1753,7 +1753,7 @@ class YoutubeDL(object): extractor = info_dict.get('ie_key') # key in a playlist if extractor is None: return None # Incomplete video information - return extractor.lower() + ' ' + info_dict['id'] + return extractor.lower() + ' ' + str(info_dict['id']) def in_download_archive(self, info_dict): fn = self.params.get('download_archive')