mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 03:33:46 +00:00 
			
		
		
		
	[utils] Do not fail on unknown date formats in unified_strdate
This commit is contained in:
		
							parent
							
								
									4d8819d249
								
							
						
					
					
						commit
						c6b9cf05e1
					
				@ -1055,7 +1055,10 @@ def unified_strdate(date_str, day_first=True):
 | 
				
			|||||||
    if upload_date is None:
 | 
					    if upload_date is None:
 | 
				
			||||||
        timetuple = email.utils.parsedate_tz(date_str)
 | 
					        timetuple = email.utils.parsedate_tz(date_str)
 | 
				
			||||||
        if timetuple:
 | 
					        if timetuple:
 | 
				
			||||||
 | 
					            try:
 | 
				
			||||||
                upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
 | 
					                upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
 | 
				
			||||||
 | 
					            except ValueError:
 | 
				
			||||||
 | 
					                pass
 | 
				
			||||||
    if upload_date is not None:
 | 
					    if upload_date is not None:
 | 
				
			||||||
        return compat_str(upload_date)
 | 
					        return compat_str(upload_date)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user