[mixcloud] improved extraction of user description
This commit is contained in:
parent
dcaf00fb3e
commit
6d67169509
1 changed files with 2 additions and 4 deletions
|
@ -195,12 +195,10 @@ class MixcloudUserIE(InfoExtractor):
|
|||
|
||||
def _get_user_description(self, page_content):
|
||||
return self._html_search_regex(
|
||||
r'<div class="description-text">.*?<p>(?P<description>.*?)</p></div></div></div>',
|
||||
r'<div class="description-text">.*?<p>(.*?)</p></div></div></div>',
|
||||
page_content,
|
||||
"user description",
|
||||
group="description",
|
||||
fatal=False,
|
||||
default="")
|
||||
fatal=False)
|
||||
|
||||
def _get_username(self, page_content):
|
||||
return self._og_search_title(page_content)
|
||||
|
|
Loading…
Reference in a new issue