diff options
author | dst <dstftw@gmail.com> | 2013-12-04 20:34:47 +0700 |
---|---|---|
committer | dst <dstftw@gmail.com> | 2013-12-04 20:34:47 +0700 |
commit | c0ade33e167d1668c4aa8a6684e7083e6c71dd6e (patch) | |
tree | 6fb736fd89b8d187d7de74159deb396c6ec4f042 /youtube_dl/extractor/gametrailers.py | |
parent | 87968574293ef87b98f51cf0d7c0958b9f496a7a (diff) |
Correct some extractor _VALID_URL regexes
Diffstat (limited to 'youtube_dl/extractor/gametrailers.py')
-rw-r--r-- | youtube_dl/extractor/gametrailers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/gametrailers.py b/youtube_dl/extractor/gametrailers.py index 3cc02d97e..88f656031 100644 --- a/youtube_dl/extractor/gametrailers.py +++ b/youtube_dl/extractor/gametrailers.py @@ -7,7 +7,7 @@ class GametrailersIE(MTVIE): Gametrailers use the same videos system as MTVIE, it just changes the feed url, where the uri is and the method to get the thumbnails. """ - _VALID_URL = r'http://www.gametrailers.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)' + _VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)' _TEST = { u'url': u'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer', u'file': u'70e9a5d7-cf25-4a10-9104-6f3e7342ae0d.mp4', |