1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-07 05:53:32 +08:00

force id to be string for download_archive

This commit is contained in:
dennishofmann
2016-02-01 22:38:59 +01:00
Unverified
parent 0436157b95
commit fdf3694235
+1 -1
View File
@@ -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')