1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-13 15:29:36 +00:00

[youtube] Use 'orderedSet' instead of 'set' to preserve the order

This commit is contained in:
Jaime Marquínez Ferrándiz 2016-01-31 15:11:00 +01:00
parent e04398e397
commit 3ccb0655c1

View file

@ -233,7 +233,7 @@ class YoutubePlaylistBaseInfoExtractor(YoutubeEntryListBaseInfoExtractor):
class YoutubePlaylistsBaseInfoExtractor(YoutubeEntryListBaseInfoExtractor):
def _process_page(self, content):
for playlist_id in set(re.findall(r'href="/?playlist\?list=([0-9A-Za-z-_]{10,})"', content)):
for playlist_id in orderedSet(re.findall(r'href="/?playlist\?list=([0-9A-Za-z-_]{10,})"', content)):
yield self.url_result(
'https://www.youtube.com/playlist?list=%s' % playlist_id, 'YoutubePlaylist')