[tumblr] Improve downloading notes
authorYen Chi Hsuan <yan12125@gmail.com>
Mon, 20 Jul 2015 10:54:47 +0000 (18:54 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Mon, 20 Jul 2015 10:54:47 +0000 (18:54 +0800)
youtube_dl/extractor/tumblr.py

index 772f94f7da4bc0a83e94516eb5ac49a73a02bb6b..3d3b635e4cb362515b365ccd8f9321e5124aadeb 100644 (file)
@@ -66,7 +66,8 @@ class TumblrIE(InfoExtractor):
         if iframe_url is None:
             return self.url_result(urlh.geturl(), 'Generic')
 
-        iframe = self._download_webpage(iframe_url, video_id)
+        iframe = self._download_webpage(iframe_url, video_id,
+                                        'Downloading iframe page')
         video_url = self._search_regex(r'<source src="([^"]+)"',
                                        iframe, 'video url')