I haven't quite read up on all the UTC-related stuff in Django as of yet (couldn't find much info about it), but I found some of the posts above concerning. It would seem that if a DateTimeField should be updated with ``timezone.now()``, then a DateField should be updated with ``timezone.now().today()``, and TimeField should be updated with ``timezone.now().time()``, no? If I'm in EST time, and the server is in MST, and it's 11:00PM on the server, my records should be updated as the following day, since it's 1:00AM EST. Is this naive to assume (if not, apologies for my lack of know-how regarding TZ issues)?
-- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.