about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-11-23 10:36:52 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2011-11-23 10:36:52 +0100
commitfa2672f9fc1f515e5dbae086465657dd3f93c66f (patch)
tree4082f132a3d9800b783299aa56257991da7e5a31
parent28e3614bc0731cd1549e924bd1e1a77d8bb02e31 (diff)
downloadyoutube-dl-fa2672f9fc1f515e5dbae086465657dd3f93c66f.tar.gz
youtube-dl-fa2672f9fc1f515e5dbae086465657dd3f93c66f.tar.xz
youtube-dl-fa2672f9fc1f515e5dbae086465657dd3f93c66f.zip
Release 2011.11.23 2011.11.23
-rw-r--r--LATEST_VERSION2
-rwxr-xr-xyoutube-dl2
-rwxr-xr-xyoutube_dl/__init__.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/LATEST_VERSION b/LATEST_VERSION
index d0b3a0fd2..652455915 100644
--- a/LATEST_VERSION
+++ b/LATEST_VERSION
@@ -1 +1 @@
-2011.11.22
+2011.11.23
diff --git a/youtube-dl b/youtube-dl
index 688ed412c..e6b7be110 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -17,7 +17,7 @@ __author__  = (
 	)
 
 __license__ = 'Public Domain'
-__version__ = '2011.11.22'
+__version__ = '2011.11.23'
 
 UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'
 
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index a3b21e13a..e6b7be110 100755
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -17,7 +17,7 @@ __author__  = (
 	)
 
 __license__ = 'Public Domain'
-__version__ = '2011.11.22'
+__version__ = '2011.11.23'
 
 UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/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)