diff options
| -rw-r--r-- | youtube_dl/extractor/redtube.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/redtube.py b/youtube_dl/extractor/redtube.py index 3bbda128e..c2254ae8a 100644 --- a/youtube_dl/extractor/redtube.py +++ b/youtube_dl/extractor/redtube.py @@ -30,7 +30,7 @@ class RedTubeIE(InfoExtractor):              r'<source src="(.+?)" type="video/mp4">', webpage, u'video URL')          video_title = self._html_search_regex( -            r'<h1 class="videoTitle slidePanelMovable">(.+?)</h1>', +            r'<h1 class="videoTitle[^"]*">(.+?)</h1>',              webpage, u'title')          # No self-labeling, but they describe themselves as  | 
