diff options
Diffstat (limited to 'youtube_dl/extractor/gdcvault.py')
| -rw-r--r-- | youtube_dl/extractor/gdcvault.py | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/gdcvault.py b/youtube_dl/extractor/gdcvault.py index 51796f3a4..f634e6285 100644 --- a/youtube_dl/extractor/gdcvault.py +++ b/youtube_dl/extractor/gdcvault.py @@ -11,7 +11,7 @@ from ..utils import remove_end  class GDCVaultIE(InfoExtractor): -    _VALID_URL = r'https?://(?:www\.)?gdcvault\.com/play/(?P<id>\d+)/(?P<name>(\w|-)+)' +    _VALID_URL = r'https?://(?:www\.)?gdcvault\.com/play/(?P<id>\d+)/(?P<name>(\w|-)+)?'      _NETRC_MACHINE = 'gdcvault'      _TESTS = [          { @@ -43,6 +43,10 @@ class GDCVaultIE(InfoExtractor):                  'title': 'Thexder Meets Windows 95, or Writing Great Games in the Windows 95 Environment',              },              'skip': 'Requires login', +        }, +        { +            'url': 'http://gdcvault.com/play/1020791/', +            'only_matching': True,          }      ] | 
