about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--LATEST_VERSION2
-rwxr-xr-xyoutube-dl4
-rwxr-xr-xyoutube_dl/__init__.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/LATEST_VERSION b/LATEST_VERSION
index b30ab005f..d0b3a0fd2 100644
--- a/LATEST_VERSION
+++ b/LATEST_VERSION
@@ -1 +1 @@
-2011.11.21
+2011.11.22
diff --git a/youtube-dl b/youtube-dl
index 9ed162186..7a014f804 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -17,7 +17,7 @@ __author__  = (
 	)
 
 __license__ = 'Public Domain'
-__version__ = '2011.11.21'
+__version__ = '2011.11.22'
 
 UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'
 
@@ -3507,7 +3507,7 @@ class SoundcloudIE(InfoExtractor):
 		if mobj:
 			try:
 				upload_date = datetime.datetime.strptime(mobj.group(1), '%B %d, %Y %H:%M').strftime('%Y%m%d')
-			except Exception as e:
+			except Exception, e:
 				print str(e)
 
 		# for soundcloud, a request to a cross domain is required for cookies
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 1af572071..7a014f804 100755
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -17,7 +17,7 @@ __author__  = (
 	)
 
 __license__ = 'Public Domain'
-__version__ = '2011.11.21'
+__version__ = '2011.11.22'
 
 UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'