diff options
author | stepshal <nessento@openmailbox.org> | 2016-09-14 23:03:26 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-09-15 23:12:58 +0700 |
commit | 490b755769a364ca0624390453e36321d5182d3e (patch) | |
tree | df3d59bf42143069fcee3e3d955cd324d5d9d1f6 /youtube_dl/extractor/canvas.py | |
parent | 1dec2c8a0e00e8ed53ddd030347ce9225df9964e (diff) |
Improve some id regexes
Diffstat (limited to 'youtube_dl/extractor/canvas.py')
-rw-r--r-- | youtube_dl/extractor/canvas.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/canvas.py b/youtube_dl/extractor/canvas.py index ef0691dcd..d183d5d52 100644 --- a/youtube_dl/extractor/canvas.py +++ b/youtube_dl/extractor/canvas.py @@ -71,7 +71,7 @@ class CanvasIE(InfoExtractor): webpage)).strip() video_id = self._html_search_regex( - r'data-video=(["\'])(?P<id>.+?)\1', webpage, 'video id', group='id') + r'data-video=(["\'])(?P<id>(?:(?!\1).)+)\1', webpage, 'video id', group='id') data = self._download_json( 'https://mediazone.vrt.be/api/v1/%s/assets/%s' |