youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 8bbb4b56ee6c582f416ca1f8951a6821fccc1548
parent 539a1641c6effa3a5b2be2fecd2fd4a6f35cef62
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  3 Mar 2016 22:11:26 +0600

[twitch:playlistsbase] Use orderedSet

Diffstat:
Myoutube_dl/extractor/twitch.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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):