Simen Haugen wrote:
> 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))
> 

The above tuple represents a datetime object.

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

Can you explain the meaning of the tuple you used?

Uwe



_______________________________________________
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