Bug in date ticks in month-year format

Hello all - I tried to have dates along the x-axis and tried

    > to plot it in the month-year format. There is a nice
    > example in Fig. 5.2 of the manual.

    > Problem is, the year always plots as year 01, even in
    > Fig. 5.2! Check it out.

    > I just tried this on 0.86, and it is still wrong.

    > Easy to fix? Easy workaround?

Look at the function matplotlib.dates.date_ticker_factory, which looks
at the date range of your axis and returns a locator and date string
formatter.

There must be an error in one of the format strings. I don't have
time to look at it right now, but it is fairly easy to grok the code.
Sometimes these errors occur just if we accidentally used an upper
case letter in a format string or vice versa...

I you hurry, you can probably send a fix in time for the 0.86.1
bugfix release :slight_smile:

JDH