Hi, I am working with an app that has time issues (99% it is a Time Zone problem). I've seen some bizzar behaviour with Django that I need help with.
With this model field: updated = meta.DateTimeField(auto_now=True) The time saved in my database through django running server is 4 hours ahead of the same object being edited by my python code: object.save( ) Here a few questions I have: - How could my python code object.save( ) treat the time differently than web? - Where is the time set for auto_now=True field? In PgSQL DB or in Python? Please note that I have properly set django time-zone settings to Eastern time TIME_ZONE = 'America/New_York' I even added timezone = EST to my postgresql.conf and restarted it. Regards, John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

