I'm trying to display the date formatted for the specified language and I'm little surprised to see that:
babel.dates.format_date(date(2017,1,1), 'MMM Y')
gives the expected value which is:
u'Jan 2017'
while:
babel.dates.format_date(date(2017,1,1), 'MMM Y', locale='fr_FR')
gives me:
u'janv. 2016'
Why is it 2016 not 2017?