mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-09 07:18:41 +00:00
Strip HTML out of uploader name
This commit is contained in:
parent
089d47f8d5
commit
5f7ad21633
|
@ -3461,6 +3461,7 @@ class YouPornIE(InfoExtractor):
|
||||||
self._downloader.trouble(u'ERROR: unable to extract uploader')
|
self._downloader.trouble(u'ERROR: unable to extract uploader')
|
||||||
return
|
return
|
||||||
video_uploader = result.group('uploader').decode('utf-8').strip()
|
video_uploader = result.group('uploader').decode('utf-8').strip()
|
||||||
|
video_uploader = clean_html( video_uploader )
|
||||||
self.report_uploader(video_uploader)
|
self.report_uploader(video_uploader)
|
||||||
|
|
||||||
# Get all of the formats available
|
# Get all of the formats available
|
||||||
|
|
Loading…
Reference in a new issue