diff options
author | Allan Zhou <allanzp@gmail.com> | 2013-08-19 17:11:52 -0700 |
---|---|---|
committer | Allan Zhou <allanzp@gmail.com> | 2013-08-19 17:11:52 -0700 |
commit | 90d3989b99c7a9446089ea635ca288216625d44c (patch) | |
tree | 5ae78d1cc8de87eaf361aea5fd069b84d3154fd7 /youtube_dl/extractor/vevo.py | |
parent | 95fdc7d69cec1381382cea33f0e4e06c8045486d (diff) | |
parent | d741e55a423a09c40b3c5e19551f432a050353d7 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'youtube_dl/extractor/vevo.py')
-rw-r--r-- | youtube_dl/extractor/vevo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 67537eae5..14abd58e8 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -8,7 +8,7 @@ from ..utils import ( class VevoIE(InfoExtractor): """ - Accecps urls from vevo.com or in the format 'vevo:{id}' + Accepts urls from vevo.com or in the format 'vevo:{id}' (currently used by MTVIE) """ _VALID_URL = r'((http://www.vevo.com/watch/.*?/.*?/)|(vevo:))(?P<id>.*)$' @@ -19,7 +19,7 @@ class VevoIE(InfoExtractor): u'info_dict': { u"upload_date": u"20130624", u"uploader": u"Hurts", - u"title": u"Somebody To Die For" + u"title": u"Somebody to Die For" } } |