diff options
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
| -rw-r--r-- | youtube_dl/YoutubeDL.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 5095f87d2..c5d08b0bb 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -148,6 +148,8 @@ class YoutubeDL(object):                         again.      cookiefile:        File name where cookies should be read from and dumped to.      nocheckcertificate:Do not verify SSL certificates +    prefer_insecure:   Use HTTP instead of HTTPS to retrieve information. +                       At the moment, this is only supported by YouTube.      proxy:             URL of the proxy server to use      socket_timeout:    Time to wait for unresponsive hosts, in seconds      bidi_workaround:   Work around buggy terminals without bidirectional text @@ -533,7 +535,7 @@ class YoutubeDL(object):                  else:                      raise          else: -            self.report_error('no suitable InfoExtractor: %s' % url) +            self.report_error('no suitable InfoExtractor for URL %s' % url)      def process_ie_result(self, ie_result, download=True, extra_info={}):          """ | 
