Browse Source

[utils] Fix call to _create_http_connection

Avoid confusion over args/kwargs.
Philipp Hagemeister 10 years ago
parent
commit
c5a59d9391
1 changed files with 2 additions and 2 deletions
  1. 2 2
      youtube_dl/utils.py

+ 2 - 2
youtube_dl/utils.py

@@ -545,7 +545,7 @@ class ContentTooShortError(Exception):
         self.expected = expected
         self.expected = expected
 
 
 
 
-def _create_http_connection(ydl_handler, http_class, is_https=False, *args, **kwargs):
+def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs):
     hc = http_class(*args, **kwargs)
     hc = http_class(*args, **kwargs)
     source_address = ydl_handler._params.get('source_address')
     source_address = ydl_handler._params.get('source_address')
     if source_address is not None:
     if source_address is not None:
@@ -589,7 +589,7 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
 
 
     def http_open(self, req):
     def http_open(self, req):
         return self.do_open(functools.partial(
         return self.do_open(functools.partial(
-            _create_http_connection, self, compat_http_client.HTTPConnection),
+            _create_http_connection, self, compat_http_client.HTTPConnection, False),
             req)
             req)
 
 
     @staticmethod
     @staticmethod