Navigation Menu

Skip to content

Commit

Permalink
Fix vimeo error (Closes #224)
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Nov 23, 2011
1 parent 208e095 commit 28e3614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube-dl
Expand Up @@ -2014,7 +2014,7 @@ class VimeoIE(InfoExtractor):
self._downloader.trouble(u'ERROR: unable to extract video title')
return
video_title = mobj.group(1).decode('utf-8')
simple_title = _simple_title(video_title)
simple_title = _simplify_title(video_title)

# Extract uploader
mobj = re.search(r'<uploader_url>http://vimeo.com/(.*?)</uploader_url>', webpage)
Expand Down

0 comments on commit 28e3614

Please sign in to comment.