diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-13 07:41:34 -0800 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-13 07:41:34 -0800 |
commit | 2a203a6cda7171d5417423a43b640c1d5ba7e7e0 (patch) | |
tree | b882eb251f18885a0f56c5d3e8e44a4687f5f683 /youtube_dl/utils.py | |
parent | 7a563df90ac93cf206d53f1af82f57a36343d589 (diff) | |
parent | dadb8184e4374c278f5c66c36b13c08d8474e30f (diff) |
Merge pull request #1956 from dstftw/master
Fix typo in month name
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 4593488ce..4e8a84a56 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -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 |