diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-10-18 17:18:01 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-10-18 17:18:01 +0800 |
commit | f6dfd6603a9e9bb88ebcdcd52490974a34d1bd11 (patch) | |
tree | a9e758270bb32024e90294429ed4c6ded9baee9d /youtube_dl/extractor/twitter.py | |
parent | e04edad621efe56347e155b6dc59a0c3d589b3bd (diff) |
[twitter] Use _html_search_regex
Diffstat (limited to 'youtube_dl/extractor/twitter.py')
-rw-r--r-- | youtube_dl/extractor/twitter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitter.py b/youtube_dl/extractor/twitter.py index c9b783745..6ff15369c 100644 --- a/youtube_dl/extractor/twitter.py +++ b/youtube_dl/extractor/twitter.py @@ -122,7 +122,7 @@ class TwitterIE(InfoExtractor): name = username url = re.sub(r'https?://(m|mobile)\.', 'https://', url) webpage = self._download_webpage(url, 'tweet: ' + url) - description = unescapeHTML(self._search_regex('<title>\s*(.+?)\s*</title>', webpage, 'title')) + description = self._html_search_regex('<title>\s*(.+?)\s*</title>', webpage, 'title') title = description.replace('\n', ' ') splitdesc = re.match(r'^(.+?)\s*on Twitter:\s* "(.+?)"$', title) if splitdesc: |