mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	Fix typo in month name
This commit is contained in:
		@@ -1051,7 +1051,7 @@ def month_by_name(name):
 | 
				
			|||||||
    """ Return the number of a month by (locale-independently) English name """
 | 
					    """ Return the number of a month by (locale-independently) English name """
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ENGLISH_NAMES = [
 | 
					    ENGLISH_NAMES = [
 | 
				
			||||||
        u'Januar', u'February', u'March', u'April', u'May', u'June',
 | 
					        u'January', u'February', u'March', u'April', u'May', u'June',
 | 
				
			||||||
        u'July', u'August', u'September', u'October', u'November', u'December']
 | 
					        u'July', u'August', u'September', u'October', u'November', u'December']
 | 
				
			||||||
    try:
 | 
					    try:
 | 
				
			||||||
        return ENGLISH_NAMES.index(name) + 1
 | 
					        return ENGLISH_NAMES.index(name) + 1
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user