Browse Source

[utils] Don't touch URLs if not necessary

Fix test_Generic_15 (Google redirect)
totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
cacd996662
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      youtube_dl/utils.py

+ 2
- 0
youtube_dl/utils.py View File

@ -1792,6 +1792,8 @@ def urlencode_postdata(*args, **kargs):
def update_url_query(url, query):
if not query:
return url
parsed_url = compat_urlparse.urlparse(url)
qs = compat_parse_qs(parsed_url.query)
qs.update(query)


Loading…
Cancel
Save