diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-02-07 21:16:31 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-02-07 21:16:31 +0600 |
commit | f070197bd7b0de49672c4ff151887355d5e6a2ec (patch) | |
tree | d17a6216ca9ae708d0894c715ddf4dd3b94f4614 /youtube_dl/extractor | |
parent | 5a7699bb2ef77c2548bcc2112e042481a809ba35 (diff) |
[konserthusetplay] Improve _VALID_URL
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/konserthusetplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/konserthusetplay.py b/youtube_dl/extractor/konserthusetplay.py index f21d050d7..e1395b24e 100644 --- a/youtube_dl/extractor/konserthusetplay.py +++ b/youtube_dl/extractor/konserthusetplay.py @@ -9,7 +9,7 @@ from ..utils import ( class KonserthusetPlayIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?konserthusetplay\.se/\?m=(?P<id>[^&]+)' + _VALID_URL = r'https?://(?:www\.)?konserthusetplay\.se/\?.*\bm=(?P<id>[^&]+)' _TEST = { 'url': 'http://www.konserthusetplay.se/?m=CKDDnlCY-dhWAAqiMERd-A', 'info_dict': { |