diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-12 17:23:00 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-12 17:23:00 +0800 | 
| commit | 12355ac4734507fbafba4ae0d876ff5fdecc08f9 (patch) | |
| tree | a3de5bc9dfbf04eee835d157565ac6187a9a7a25 | |
| parent | 49f523ca506f3b57e8a54b97c6a29dc71624aeef (diff) | |
[goshgay] Fix extraction
isFamilyFriendly no longer exists in the webpage and I can't find
another indicator.
| -rw-r--r-- | youtube_dl/extractor/goshgay.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/goshgay.py b/youtube_dl/extractor/goshgay.py index 1d9166455..0c015141f 100644 --- a/youtube_dl/extractor/goshgay.py +++ b/youtube_dl/extractor/goshgay.py @@ -14,13 +14,13 @@ class GoshgayIE(InfoExtractor):      _VALID_URL = r'https?://www\.goshgay\.com/video(?P<id>\d+?)($|/)'      _TEST = {          'url': 'http://www.goshgay.com/video299069/diesel_sfw_xxx_video', -        'md5': '027fcc54459dff0feb0bc06a7aeda680', +        'md5': '4b6db9a0a333142eb9f15913142b0ed1',          'info_dict': {              'id': '299069',              'ext': 'flv',              'title': 'DIESEL SFW XXX Video',              'thumbnail': 're:^http://.*\.jpg$', -            'duration': 79, +            'duration': 80,              'age_limit': 18,          }      } @@ -47,5 +47,5 @@ class GoshgayIE(InfoExtractor):              'title': title,              'thumbnail': thumbnail,              'duration': duration, -            'age_limit': self._family_friendly_search(webpage), +            'age_limit': 18,          } | 
