Merge pull request #6736 from remitamine/readme
authorSergey M. <dstftw@gmail.com>
Wed, 2 Sep 2015 15:08:22 +0000 (21:08 +0600)
committerSergey M. <dstftw@gmail.com>
Wed, 2 Sep 2015 15:08:22 +0000 (21:08 +0600)
[README] link to developer instructions and correct common.py path

youtube_dl/utils.py

index e265c75742b6d22647965e6a0261f24bb4a73a00..b7a423166997766d8903b5697dc764008978bc6b 100644 (file)
@@ -587,6 +587,11 @@ class ContentTooShortError(Exception):
 
 
 def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs):
+    # Working around python 2 bug (see http://bugs.python.org/issue17849) by limiting
+    # expected HTTP responses to meet HTTP/1.0 or later (see also
+    # https://github.com/rg3/youtube-dl/issues/6727)
+    if sys.version_info < (3, 0):
+        kwargs['strict'] = True
     hc = http_class(*args, **kwargs)
     source_address = ydl_handler._params.get('source_address')
     if source_address is not None: