Skip to content

Commit

Permalink
[mtv] Strip the description
Browse files Browse the repository at this point in the history
There were some tabs and newlines added around the string.
  • Loading branch information
jaimeMF committed Oct 10, 2013
1 parent 63da13e commit 0ab4ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/mtv.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _get_video_info(self, itemdoc):

description_node = itemdoc.find('description')
if description_node is not None:
description = description_node.text
description = description_node.text.strip()
else:
description = None

Expand Down

0 comments on commit 0ab4ff6

Please sign in to comment.