diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-06-23 02:54:12 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-06-23 02:54:12 +0700 |
commit | ac7409eec5be3e120928e66af0d5fd7f38a06c5f (patch) | |
tree | 20ee595c1228c10cdb74a601e7ab0062b34afc8f /youtube_dl | |
parent | 170719414da3b516af464c4b0fb8a6a94c398e14 (diff) |
[hgtv.com:show] Fix typo
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/hgtv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/hgtv.py b/youtube_dl/extractor/hgtv.py index 4d4b06824..a4f332565 100644 --- a/youtube_dl/extractor/hgtv.py +++ b/youtube_dl/extractor/hgtv.py @@ -28,7 +28,7 @@ class HGTVComShowIE(InfoExtractor): config = self._parse_json( self._search_regex( - r'(?s)data-(?:deferred)?-module=["\']video["\'][^>]*>.*?<script[^>]+type=["\']text/x-config["\'][^>]*>(.+?)</script', + r'(?s)data-(?:deferred-)?module=["\']video["\'][^>]*>.*?<script[^>]+type=["\']text/x-config["\'][^>]*>(.+?)</script', webpage, 'video config'), display_id)['channels'][0] |