diff options
author | David Ben Zakai <david.benzakai@gmail.com> | 2015-11-10 16:31:31 +0200 |
---|---|---|
committer | David Ben Zakai <david.benzakai@gmail.com> | 2015-11-10 16:31:42 +0200 |
commit | d3d3e2e3aac13c3c6fbae0fcfeaa41ce5ee9144b (patch) | |
tree | 23c4e033000f7afdea1700570c87775bcf6934a1 /youtube_dl/YoutubeDL.py | |
parent | 37ca7b22b5521d7797ffefcd1456b4eb31320460 (diff) |
Adding proxy to update procedure
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 1783ce01b..5a0cc3f9a 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1994,6 +1994,9 @@ 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') |