Browse Source

Make exception handling 2.5-compatible (Closes #223)

rtmp_test
Philipp Hagemeister 13 years ago
parent
commit
dc0a294a73
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/__init__.py

+ 1
- 1
youtube_dl/__init__.py View File

@ -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


Loading…
Cancel
Save