diff options
author | Remita Amine <remitamine@gmail.com> | 2016-08-23 17:31:08 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-08-23 17:31:35 +0100 |
commit | ccb6570e9e625ff5e9adf88729e745acadcaff0e (patch) | |
tree | 5bc92477a7ae8bbfae16ee1cb88799489f3090f0 /youtube_dl/extractor/syfy.py | |
parent | 18b6216150fa39d5e3cdbf353339e1c010bcee8d (diff) |
[syfy,bravotv] restrict drupal settings regex
Diffstat (limited to 'youtube_dl/extractor/syfy.py')
-rw-r--r-- | youtube_dl/extractor/syfy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/syfy.py b/youtube_dl/extractor/syfy.py index cc81f6003..ab8bab5cd 100644 --- a/youtube_dl/extractor/syfy.py +++ b/youtube_dl/extractor/syfy.py @@ -31,7 +31,7 @@ class SyfyIE(AdobePassIE): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) syfy_mpx = list(self._parse_json(self._search_regex( - r'jQuery\.extend\([^,]+,\s*({.+})\);', webpage, 'drupal settings'), + r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);', webpage, 'drupal settings'), display_id)['syfy']['syfy_mpx'].values())[0] video_id = syfy_mpx['mpxGUID'] title = syfy_mpx['episodeTitle'] |