[utils] unified_strdate: Return None if the date format can't be recognized (fixes...
[youtube-dl] / youtube_dl / utils.py
index 7b3f79141fff9abb12b7ac2a532592d790a8171c..d39f313a41802f38f91418e12cc89dcd798b0286 100644 (file)
@@ -911,7 +911,8 @@ def unified_strdate(date_str, day_first=True):
         timetuple = email.utils.parsedate_tz(date_str)
         if timetuple:
             upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
-    return compat_str(upload_date)
+    if upload_date is not None:
+        return compat_str(upload_date)
 
 
 def determine_ext(url, default_ext='unknown_video'):