diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-09-23 01:40:06 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-09-23 01:40:06 +0600 | 
| commit | e28c794699596912092635014b041d0af888fd08 (patch) | |
| tree | 4089ee1d24ff73595d35f333755ac76491090c34 | |
| parent | da9f18083596d0132d12652acd0bd8983c70c058 (diff) | |
[9gag] Make display_id optional
| -rw-r--r-- | youtube_dl/extractor/ninegag.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/ninegag.py b/youtube_dl/extractor/ninegag.py index 0a2725c65..6103c7517 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/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", @@ -61,7 +61,7 @@ class NineGagIE(InfoExtractor):      def _real_extract(self, url):          mobj = re.match(self._VALID_URL, url)          video_id = mobj.group('id') -        display_id = mobj.group('display_id') +        display_id = mobj.group('display_id') or video_id          webpage = self._download_webpage(url, display_id) | 
