From: Adam Malcontenti-Wilson Date: Sun, 13 Jul 2014 11:15:18 +0000 (+1000) Subject: Test for colon in mgid X-Git-Tag: 2014.07.15~8^2~1 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=b1298d8e064e3c1d31bdfffe8a3b5cfed8b0b61d;p=youtube-dl.git Test for colon in mgid --- diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index af9490cccf..228b42d2b9 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -158,6 +158,9 @@ class MTVServicesInfoExtractor(InfoExtractor): if mgid.endswith('.swf'): mgid = mgid[:-4] except RegexNotFoundError: + mgid = None + + if mgid is None or ':' not in mgid: mgid = self._search_regex( [r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'], webpage, u'mgid')