Browse Source

Release 2011.11.22

rtmp_test 2011.11.22
Philipp Hagemeister 13 years ago
parent
commit
0ae7abe57c
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      LATEST_VERSION
  2. +2
    -2
      youtube-dl
  3. +1
    -1
      youtube_dl/__init__.py

+ 1
- 1
LATEST_VERSION View File

@ -1 +1 @@
2011.11.21
2011.11.22

+ 2
- 2
youtube-dl View File

@ -17,7 +17,7 @@ __author__ = (
) )
__license__ = 'Public Domain' __license__ = 'Public Domain'
__version__ = '2011.11.21'
__version__ = '2011.11.22'
UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl' UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'
@ -3507,7 +3507,7 @@ class SoundcloudIE(InfoExtractor):
if mobj: if mobj:
try: try:
upload_date = datetime.datetime.strptime(mobj.group(1), '%B %d, %Y %H:%M').strftime('%Y%m%d') 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) print str(e)
# for soundcloud, a request to a cross domain is required for cookies # for soundcloud, a request to a cross domain is required for cookies


+ 1
- 1
youtube_dl/__init__.py View File

@ -17,7 +17,7 @@ __author__ = (
) )
__license__ = 'Public Domain' __license__ = 'Public Domain'
__version__ = '2011.11.21'
__version__ = '2011.11.22'
UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl' UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'


Loading…
Cancel
Save