diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-03-11 23:18:42 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-03-11 23:18:42 +0700 |
commit | a28f8d739683577ea632b1523eee418ed5177b73 (patch) | |
tree | 194713ab1a56f4e76839c1d40f947d94377f3bce /youtube_dl/extractor/discoverygo.py | |
parent | 70497994707b6bcbd6c0ecc3fb1073be4d75d970 (diff) |
[discoverygo] Bypass geo restriction
Diffstat (limited to 'youtube_dl/extractor/discoverygo.py')
-rw-r--r-- | youtube_dl/extractor/discoverygo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/discoverygo.py b/youtube_dl/extractor/discoverygo.py index d14de8f00..de94c4b09 100644 --- a/youtube_dl/extractor/discoverygo.py +++ b/youtube_dl/extractor/discoverygo.py @@ -30,6 +30,7 @@ class DiscoveryGoBaseIE(InfoExtractor): class DiscoveryGoIE(DiscoveryGoBaseIE): _VALID_URL = DiscoveryGoBaseIE._VALID_URL_TEMPLATE % r'(?:[^/]+/)+' + _GEO_COUNTRIES = ['US'] _TEST = { 'url': 'https://www.discoverygo.com/love-at-first-kiss/kiss-first-ask-questions-later/', 'info_dict': { |