http://gitunderground.i2p/archive/youtube-dl/commit/90c9f789d94fc2c0b4c28c57ba2e0b2f09ef95e3
SOCKS5 elif url_components . scheme . lower ( ) in ( ' socks ' , ' socks4 ' ) : @@ -3673,7 +3674,7 @@ def remove_quotes(s): def url_basename ( url ) : path = compat_urlparse . urlparse ( url ) . path path = compat_urllib_parse . urlparse ( url ) . path return path . strip ( ' / ' ) . split ( ' / ' ) [ - 1 ] @@ -3693,7 +3694,7 @@ def urljoin(base, path): if not isinstance ( base , compat_str ) or not re . match ( r ' ^(?:https?:)?// ' , base ) : return None...