aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/twitch.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-03 22:11:26 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-03 22:11:26 +0600
commit8bbb4b56ee6c582f416ca1f8951a6821fccc1548 (patch)
treed1b6879a1cd980b24939b4b26a781a39f39ca917 /youtube_dl/extractor/twitch.py
parent539a1641c6effa3a5b2be2fecd2fd4a6f35cef62 (diff)
downloadyoutube-dl-8bbb4b56ee6c582f416ca1f8951a6821fccc1548.zip
youtube-dl-8bbb4b56ee6c582f416ca1f8951a6821fccc1548.tar.gz
youtube-dl-8bbb4b56ee6c582f416ca1f8951a6821fccc1548.tar.bz2
[twitch:playlistsbase] Use orderedSet
Diffstat (limited to 'youtube_dl/extractor/twitch.py')
-rw-r--r--youtube_dl/extractor/twitch.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index d92d2fd..a9f8a5b 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):