diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-11-23 10:35:17 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-11-23 10:35:55 +0100 |
commit | 28e3614bc0731cd1549e924bd1e1a77d8bb02e31 (patch) | |
tree | 8ae2ace74b3c1a3bb7256dee07a6fb8bf3ef02d7 | |
parent | 208e095f72aaa014d5e0140e4b5ac38cfd30553f (diff) |
Fix vimeo error (Closes #224)
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index a3b21e13a..688ed412c 100755 --- a/youtube-dl +++ b/youtube-dl @@ -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) |