mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 01:02:00 +01:00
[mtv] Fix description extraction (Closes #8962)
This commit is contained in:
parent
622d19160b
commit
5767b4eeae
@ -17,6 +17,7 @@ from ..utils import (
|
||||
unescapeHTML,
|
||||
url_basename,
|
||||
RegexNotFoundError,
|
||||
xpath_text,
|
||||
)
|
||||
|
||||
|
||||
@ -130,11 +131,7 @@ class MTVServicesInfoExtractor(InfoExtractor):
|
||||
message += item.text
|
||||
raise ExtractorError(message, expected=True)
|
||||
|
||||
description_node = itemdoc.find('description')
|
||||
if description_node is not None:
|
||||
description = description_node.text.strip()
|
||||
else:
|
||||
description = None
|
||||
description = xpath_text(itemdoc, 'description')
|
||||
|
||||
title_el = None
|
||||
if title_el is None:
|
||||
|
Loading…
Reference in New Issue
Block a user