mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
Make exception handling 2.5-compatible (Closes #223)
This commit is contained in:
parent
468c99257c
commit
dc0a294a73
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue