Browse Source

[yahoo] Yahoo doesn't like region names in lower cases

Fix test_Yahoo_7
totalwebcasting
Yen Chi Hsuan 8 years ago
parent
commit
55290788d3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/yahoo.py

+ 1
- 1
youtube_dl/extractor/yahoo.py View File

@ -343,7 +343,7 @@ class YahooIE(InfoExtractor):
webpage, 'region', fatal=False, default='US')
data = compat_urllib_parse_urlencode({
'protocol': 'http',
'region': region,
'region': region.upper(),
})
query_url = (
'https://video.media.yql.yahoo.com/v1/video/sapi/streams/'


Loading…
Cancel
Save