diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-09-21 22:51:36 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-09-21 22:51:36 +0700 |
commit | 12f211d0cbd25554ff3116ee173ffc3f25d0e453 (patch) | |
tree | d0b00d89727ff5073bd7ec975ce4f0b5576a5df6 /youtube_dl/extractor/videomore.py | |
parent | 3a5a18705f2a7faf64a4b69665511ef5f0c6084d (diff) |
[videomore] Fix embed regex
Diffstat (limited to 'youtube_dl/extractor/videomore.py')
-rw-r--r-- | youtube_dl/extractor/videomore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/videomore.py b/youtube_dl/extractor/videomore.py index 328b5b7fb..8a11ff848 100644 --- a/youtube_dl/extractor/videomore.py +++ b/youtube_dl/extractor/videomore.py @@ -84,7 +84,7 @@ class VideomoreIE(InfoExtractor): @staticmethod def _extract_url(webpage): mobj = re.search( - r'<object[^>]+data=(["\'])https?://videomore.ru/player\.swf\?.*config=(?P<url>https?://videomore\.ru/(?:[^/]+/)+\d+\.xml).*\1', + r'<object[^>]+data=(["\'])https?://videomore\.ru/player\.swf\?.*config=(?P<url>https?://videomore\.ru/(?:[^/]+/)+\d+\.xml).*\1', webpage) if mobj: return mobj.group('url') |