mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 17:12:36 +00:00
Ignore invalid dates (Fixes #894)
This commit is contained in:
parent
213b715893
commit
bb47437686
@ -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…
Reference in New Issue
Block a user