The recent change (18jan) to dates.py getStringFromDate() breaks my code

        return time.strftime(fmt, (d.year, d.month, d.day, 0, 0, 0, 0,
0, 0))

Should be

        return time.strftime(fmt, (d.year, d.month, d.day, 0, 0, 0,
d.month, d.day, 0))


It's also worth noting that it could be simpler by using (as the dates
strftime supports the same)

        return d.strftime(fmt)




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]

Reply via email to