youtube-dl

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

commit 7e5dc339de14547aa7b489e88b4c456ec613ba9d
parent 4a69fa04e0074a3d5938ffb03decff9cc33f5d3d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  4 Sep 2016 00:29:01 +0700

[youtube:watchlater] Fix extraction (Closes #10544)

Diffstat:
Myoutube_dl/extractor/youtube.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -2376,7 +2376,7 @@ class YoutubeWatchLaterIE(YoutubePlaylistIE): }] def _real_extract(self, url): - video = self._check_download_just_video(url, 'WL') + _, video = self._check_download_just_video(url, 'WL') if video: return video _, playlist = self._extract_playlist('WL')