summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-03-07 16:43:34 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-03-07 16:43:34 +0100
commite9c092f1252d64040aa181f606e23cf7fc533dc1 (patch)
tree4aba7ca345d15c788769811945c171519b62bb53
parent22ff5d21056f5639eef06d30392f3b8750734c26 (diff)
downloadyoutube-dl-e9c092f1252d64040aa181f606e23cf7fc533dc1.tar.gz
youtube-dl-e9c092f1252d64040aa181f606e23cf7fc533dc1.tar.xz
youtube-dl-e9c092f1252d64040aa181f606e23cf7fc533dc1.zip
YoutubeDL: Use its `urlopen` method for downloading the thumbnail.
-rw-r--r--youtube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 62ccad20c..6fd0969b5 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -918,7 +918,7 @@ class YoutubeDL(object):
                     self.to_screen('[%s] %s: Downloading thumbnail ...' %
                                    (info_dict['extractor'], info_dict['id']))
                     try:
-                        uf = compat_urllib_request.urlopen(info_dict['thumbnail'])
+                        uf = self.urlopen(info_dict['thumbnail'])
                         with open(thumb_filename, 'wb') as thumbf:
                             shutil.copyfileobj(uf, thumbf)
                         self.to_screen('[%s] %s: Writing thumbnail to: %s' %