projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
539a164
)
[twitch:playlistsbase] Use orderedSet
author
Sergey M․
<dstftw@gmail.com>
Thu, 3 Mar 2016 16:11:26 +0000
(22:11 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Thu, 3 Mar 2016 16:11:26 +0000
(22:11 +0600)
youtube_dl/extractor/twitch.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/twitch.py
b/youtube_dl/extractor/twitch.py
index d92d2fd4071ce7158ff4d27f58840342e6063ef1..a9f8a5b8b542e56e18e994edcb07db71a828e9b0 100644
(file)
--- 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
s
et(entries)],
+ [self.url_result(entry) for entry in
orderedS
et(entries)],
channel_id, channel_name)
def _extract_playlist_page(self, response):