[twitter] Use _html_search_regex

This commit is contained in:
Yen Chi Hsuan 2015-10-18 17:18:01 +08:00
parent e04edad621
commit f6dfd6603a
1 changed files with 1 additions and 1 deletions

View File

@ -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: