Roundup Tracker - Issues

Message2228

Author schlatterbeck
Recipients
Date 2006-03-10.11:14:15
Message-id
In-reply-to
Logged In: YES 
user_id=34818

The offending date (Just added a print statement in
roundup/date.py) is 2006-02-15.00:00:0.000 -- looks like
postgres returns a wrong date here??
Maybe I should mention that I'm using postgresql backend.
Roundup 0.8 was more tolerant:

>>> from roundup.date import Date
>>> Date ('2006-02-15.00:00:0.000')
2006-02-15.00:00:0.000
Traceback (most recent call last):
...
>>> from roundup08.date import Date
>>> Date ('2006-02-15.00:00:0.000')
<Date 2006-02-15.00:00:0.000000>

History
Date User Action Args
2009-02-03 14:21:43adminlinkissue1447141 messages
2009-02-03 14:21:43admincreate