summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-07-20 18:54:47 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-07-20 18:54:47 +0800
commit3f302bca8cf29f618d1f1c2fb7bc4ea9538af805 (patch)
tree5cdb0501853f67b2a1ed642777896e22ec3e6ef5
parentc909e5820e94ecfefd9a2eb41b1beaa684c530c4 (diff)
downloadyoutube-dl-3f302bca8cf29f618d1f1c2fb7bc4ea9538af805.tar.gz
youtube-dl-3f302bca8cf29f618d1f1c2fb7bc4ea9538af805.tar.xz
youtube-dl-3f302bca8cf29f618d1f1c2fb7bc4ea9538af805.zip
[tumblr] Improve downloading notes
-rw-r--r--youtube_dl/extractor/tumblr.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tumblr.py b/youtube_dl/extractor/tumblr.py
index 772f94f7d..3d3b635e4 100644
--- a/youtube_dl/extractor/tumblr.py
+++ b/youtube_dl/extractor/tumblr.py
@@ -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')