From ce4c61ed8e9f54d8ac99cd29f0eb7871e69d71e1 Mon Sep 17 00:00:00 2001 From: xuehongzhi Date: Fri, 16 Mar 2018 23:03:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E5=9E=8Bid=E8=BD=AC=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 523dd1f7d..ce98ff472 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -2052,7 +2052,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')