youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 2a203a6cda7171d5417423a43b640c1d5ba7e7e0
parent 7a563df90ac93cf206d53f1af82f57a36343d589
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 13 Dec 2013 07:41:34 -0800

Merge pull request #1956 from dstftw/master

Fix typo in month name
Diffstat:
Myoutube_dl/utils.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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