diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-03-03 22:11:26 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-03-03 22:11:26 +0600 |
commit | 8bbb4b56ee6c582f416ca1f8951a6821fccc1548 (patch) | |
tree | d1b6879a1cd980b24939b4b26a781a39f39ca917 /youtube_dl/extractor/twitch.py | |
parent | 539a1641c6effa3a5b2be2fecd2fd4a6f35cef62 (diff) |
[twitch:playlistsbase] Use orderedSet
Diffstat (limited to 'youtube_dl/extractor/twitch.py')
-rw-r--r-- | youtube_dl/extractor/twitch.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index d92d2fd40..a9f8a5b8b 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -17,6 +17,7 @@ from ..utils import ( encode_dict, ExtractorError, int_or_none, + orderedSet, parse_duration, parse_iso8601, sanitized_Request, @@ -311,7 +312,7 @@ class TwitchPlaylistBaseIE(TwitchBaseIE): break offset += limit return self.playlist_result( - [self.url_result(entry) for entry in set(entries)], + [self.url_result(entry) for entry in orderedSet(entries)], channel_id, channel_name) def _extract_playlist_page(self, response): |