1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-27 22:29:33 +00:00

Don't be too clever (Fixes Python 3)

This commit is contained in:
Philipp Hagemeister 2013-02-26 21:21:50 +01:00
parent acb8752f80
commit 691db5ba02

View file

@ -1741,8 +1741,7 @@ class YoutubePlaylistIE(InfoExtractor):
break
page_num += 1
videos = map(operator.itemgetter(1), sorted(videos))
videos = [v[1] for v in sorted(videos)]
total = len(videos)
playliststart = self._downloader.params.get('playliststart', 1) - 1