mirror of
https://gitlab.com/ytdl-org/youtube-dl.git
synced 2025-11-06 12:37:06 -05:00
[mtv] Strip the description
There were some tabs and newlines added around the string.
This commit is contained in:
@@ -87,7 +87,7 @@ class MTVIE(InfoExtractor):
|
|||||||
|
|
||||||
description_node = itemdoc.find('description')
|
description_node = itemdoc.find('description')
|
||||||
if description_node is not None:
|
if description_node is not None:
|
||||||
description = description_node.text
|
description = description_node.text.strip()
|
||||||
else:
|
else:
|
||||||
description = None
|
description = None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user