aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-09-21 22:51:36 +0700
committerSergey M․ <dstftw@gmail.com>2016-09-21 22:51:36 +0700
commit12f211d0cbd25554ff3116ee173ffc3f25d0e453 (patch)
treed0b00d89727ff5073bd7ec975ce4f0b5576a5df6
parent3a5a18705f2a7faf64a4b69665511ef5f0c6084d (diff)
downloadyoutube-dl-12f211d0cbd25554ff3116ee173ffc3f25d0e453.tar.xz
[videomore] Fix embed regex
-rw-r--r--youtube_dl/extractor/videomore.py2
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')