aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Ben Zakai <david.benzakai@gmail.com>2015-11-10 17:15:23 +0200
committerDavid Ben Zakai <david.benzakai@gmail.com>2015-11-10 17:15:23 +0200
commit90bb5667bf32574caa7c01f66b3ca8ad2ab77e81 (patch)
tree569aae3b31bcac381477a49263c494b395908466
parentd3d3e2e3aac13c3c6fbae0fcfeaa41ce5ee9144b (diff)
downloadyoutube-dl-90bb5667bf32574caa7c01f66b3ca8ad2ab77e81.tar.xz
Using internal opener
-rwxr-xr-xyoutube_dl/YoutubeDL.py3
-rw-r--r--youtube_dl/__init__.py2
2 files changed, 1 insertions, 4 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 5a0cc3f9a..1783ce01b 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1994,9 +1994,6 @@ class YoutubeDL(object):
encoding = preferredencoding()
return encoding
- def get_opener(self):
- return self._opener
-
def _write_thumbnails(self, info_dict, filename):
if self.params.get('writethumbnail', False):
thumbnails = info_dict.get('thumbnails')
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 760128546..9f131f5db 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -377,7 +377,7 @@ def _real_main(argv=None):
with YoutubeDL(ydl_opts) as ydl:
# Update version
if opts.update_self:
- update_self(ydl.to_screen, opts.verbose, ydl.get_opener())
+ update_self(ydl.to_screen, opts.verbose, ydl._opener)
# Remove cache dir
if opts.rm_cachedir: