commit: 0ae7abe57c2b4831dc193da2af48e07a33387db5
parent dc0a294a7370b0eb55a36a0ac231b18e09877eeb
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Tue, 22 Nov 2011 15:32:53 +0100
Release 2011.11.22
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/LATEST_VERSION b/LATEST_VERSION
@@ -1 +1 @@
-2011.11.21
+2011.11.22
diff --git 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
@@ -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'