diff options
| -rw-r--r-- | youtube_dl/extractor/tube8.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/tube8.py b/youtube_dl/extractor/tube8.py index ef8d21642..ebc8c1f4f 100644 --- a/youtube_dl/extractor/tube8.py +++ b/youtube_dl/extractor/tube8.py @@ -36,7 +36,7 @@ class Tube8IE(InfoExtractor):          video_title = self._html_search_regex(r'videotitle	="([^"]+)', webpage, u'title')          video_description = self._html_search_regex(r'>Description:</strong>(.+?)<', webpage, u'description', fatal=False) -        video_uploader = self._html_search_regex(r'>Submitted by:</strong>(?:\w|<[^>]*>)*(.+?)<', webpage, u'uploader', fatal=False) +        video_uploader = self._html_search_regex(r'>Submitted by:</strong>(?:\s|<[^>]*>)*(.+?)<', webpage, u'uploader', fatal=False)          thumbnail = self._html_search_regex(r'"image_url":"([^"]+)', webpage, u'thumbnail', fatal=False)          if thumbnail:              thumbnail = thumbnail.replace('\\/', '/') | 
