aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-13 07:41:34 -0800
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-13 07:41:34 -0800
commit2a203a6cda7171d5417423a43b640c1d5ba7e7e0 (patch)
treeb882eb251f18885a0f56c5d3e8e44a4687f5f683
parent7a563df90ac93cf206d53f1af82f57a36343d589 (diff)
parentdadb8184e4374c278f5c66c36b13c08d8474e30f (diff)
downloadyoutube-dl-2a203a6cda7171d5417423a43b640c1d5ba7e7e0.tar.xz
Merge pull request #1956 from dstftw/master
Fix typo in month name
-rw-r--r--youtube_dl/utils.py2
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