diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-09-23 01:43:26 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-09-23 01:43:26 +0600 | 
| commit | 6400f8ec0f20011a7e39da62e0a3e55e0fd2759a (patch) | |
| tree | 4c31bb53bd94f6a749cbfa4d5fa1e833945ba536 | |
| parent | c3a4e2ec40f9a90d4ae8991e6764641c744ec8fb (diff) | |
[9gag] Allow old .tv domain
There are still references to it in webpage's source
| -rw-r--r-- | youtube_dl/extractor/ninegag.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ninegag.py b/youtube_dl/extractor/ninegag.py index 34879d1c8..d157b0d10 100644 --- a/youtube_dl/extractor/ninegag.py +++ b/youtube_dl/extractor/ninegag.py @@ -9,7 +9,7 @@ from ..utils import str_to_int  class NineGagIE(InfoExtractor):      IE_NAME = '9gag' -    _VALID_URL = r'https?://(?:www\.)?9gag\.com/tv/p/(?P<id>[a-zA-Z0-9]+)(?:/(?P<display_id>[^?#/]+))?' +    _VALID_URL = r'https?://(?:www\.)?9gag(?:\.com/tv|\.tv)/p/(?P<id>[a-zA-Z0-9]+)(?:/(?P<display_id>[^?#/]+))?'      _TESTS = [{          "url": "http://9gag.com/tv/p/Kk2X5/people-are-awesome-2013-is-absolutely-awesome", @@ -28,6 +28,9 @@ class NineGagIE(InfoExtractor):      }, {          'url': 'http://9gag.com/tv/p/KklwM',          'only_matching': True, +    }, { +        'url': 'http://9gag.tv/p/Kk2X5', +        'only_matching': True,      }]      _EXTERNAL_VIDEO_PROVIDER = {          '1': {  | 
