Merge pull request #1956 from dstftw/master
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 13 Dec 2013 15:41:34 +0000 (07:41 -0800)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 13 Dec 2013 15:41:34 +0000 (07:41 -0800)
Fix typo in month name

youtube_dl/utils.py

index 4593488ce5e30bb69a19c56cc4c84a581d3d17f6..4e8a84a56a5b717db73e986c91c2621920fcba47 100644 (file)
@@ -1051,7 +1051,7 @@ def month_by_name(name):
     """ Return the number of a month by (locale-independently) English name """
 
     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']
     try:
         return ENGLISH_NAMES.index(name) + 1