整型id转字符串

This commit is contained in:
xuehongzhi 2018-03-16 23:03:35 +08:00
parent c11970ed72
commit ce4c61ed8e

View File

@ -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')