aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-09-04 00:29:01 +0700
committerSergey M․ <dstftw@gmail.com>2016-09-04 00:29:01 +0700
commit7e5dc339de14547aa7b489e88b4c456ec613ba9d (patch)
treef3e8b182d1ef284fa777d11d0f75f7808f162216 /youtube_dl
parent4a69fa04e0074a3d5938ffb03decff9cc33f5d3d (diff)
downloadyoutube-dl-7e5dc339de14547aa7b489e88b4c456ec613ba9d.tar.xz
[youtube:watchlater] Fix extraction (Closes #10544)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 4c8edef8d..0bc85af74 100644
--- 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')