summary refs log tree commit diff
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
parent539a1641c6effa3a5b2be2fecd2fd4a6f35cef62 (diff)
downloadyoutube-dl-8bbb4b56ee6c582f416ca1f8951a6821fccc1548.tar.gz
youtube-dl-8bbb4b56ee6c582f416ca1f8951a6821fccc1548.tar.xz
youtube-dl-8bbb4b56ee6c582f416ca1f8951a6821fccc1548.zip
[twitch:playlistsbase] Use orderedSet
-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 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):