Browse Source

[huajiao] Improve feed regex

totalwebcasting
Sergey M․ 8 years ago
parent
commit
c0b1e88895
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/huajiao.py

+ 1
- 1
youtube_dl/extractor/huajiao.py View File

@ -33,7 +33,7 @@ class HuajiaoIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
feed_json = self._search_regex(
r'var\s*feed\s*=\s*({.*})', webpage, 'feed json str')
r'var\s+feed\s*=\s*({.+})', webpage, 'feed json')
feed = self._parse_json(feed_json, video_id)
description = self._html_search_meta(


Loading…
Cancel
Save