diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-01-05 00:39:47 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-01-05 00:39:47 +0100 |
commit | c92e184f751a3b58b5a6fbf090f4882932e5bd4b (patch) | |
tree | c6ea2741cbc5f70b985cf8eda1f7984c50ff4f78 | |
parent | 3906e6ce6001d4dece9596284edc75dff4502497 (diff) |
Correct comedycentral flash URL regex
-rwxr-xr-x | youtube_dl/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 00d37dc70..2404e2359 100755 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -3151,7 +3151,7 @@ class ComedyCentralIE(InfoExtractor): return epTitle = mobj.group('episode') - mMovieParams = re.findall('(?:<param name="movie" value=")|(?:var url = ")(http://media.mtvnservices.com/([^"]*episode.*?:.*?))"', html) + mMovieParams = re.findall('(?:<param name="movie" value="|var url = ")(http://media.mtvnservices.com/([^"]*episode.*?:.*?))"', html) if len(mMovieParams) == 0: self._downloader.trouble(u'ERROR: unable to find Flash URL in webpage ' + url) return |