Ok, I fixed it.
I had the following, which used to work, in my models.
date_added = models.DateTimeField(default=models.LazyDate(),
editable=False)
I changed it to the following and it now works.
date_added = models.DateTimeField(default=datetime.now(),
editable=False)
Now everything is fine.
I just rechecked and everything is using DateTimeField.
I'm pretty sure this happened without me making any changes to my
models. From what I can tell it's a problem with the "change list" that
the admin displays for each object. Before I have added and objects I
get the page but of course it's e
On 8/22/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> Has anybody seen the following exception? It was working till I did an
> svn update sometime in the last couple weeks. (I don't often use the
> admin so I'm not sure when.) I also tried getting it working with a
> clean syncd
Hi all,
Has anybody seen the following exception? It was working till I did an
svn update sometime in the last couple weeks. (I don't often use the
admin so I'm not sure when.) I also tried getting it working with a
clean syncdb but still get the error. I'm using sqlite.
The error mesg is:
Caug
4 matches
Mail list logo