On 7/18/07, Nash <[EMAIL PROTECTED]> wrote: > I am running django pre-0.97 on a linux box. the date command on linux > and in python datetime.now() both give me the correct times. However, > in one of my models, there is a datetime attribute 'created_on' with > default=datetime.now(). The default value going is is not the same as > that of datetime.now() (its 10 hours or so behind). Any ideas? Much > thanks for your help!
Remove the parentheses, so that it's "default=datetime.now". The important thing here is to understand the difference between passing the *return value* of a function to be a default, and between passing *the function itself* to be a default. What you want is to pass the function as the default, because Django will recognize a function object and call it repeatedly as needed to get values. But what you're doing, by using the parentheses, is calling "datetime.now()" at the time the model class is defined, and passing its return value at that single moment to be the default. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---