Browse Source

Ignore invalid dates (Fixes #894)

rtmp_test
Philipp Hagemeister 11 years ago
parent
commit
bb47437686
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/FileDownloader.py

+ 3
- 0
youtube_dl/FileDownloader.py View File

@ -322,6 +322,9 @@ class FileDownloader(object):
filetime = timeconvert(timestr)
if filetime is None:
return filetime
# Ignore obviously invalid dates
if filetime == 0:
return
try:
os.utime(filename, (time.time(), filetime))
except:


Loading…
Cancel
Save