I'm having a strange problem with running django on a Cherrypy server. in my views.py, I setup a variable called oneweekago, and set it to today() - (days=7) (it's obviously a date type variable), then in my query, I ask for all records that are __LTE=oneweekago.
This code works perfect the day I start my server, but the next day, if there are records that meet the criteria, it doesn't. Like the variable oneweekago is not getting recalculated. If I restart the server, it works great. Here's the actual code in question: oneweekago = datetime.date.today() - datetime.timedelta(days=7) disablehost_dict = { 'queryset' : unixhost.objects.all().filter( hostsetting__sshkeys = True, hostsetting__userlist = True, hostsetting__installed = True, hostsetting__delayed=False, hostsetting__installdate__lte=oneweekago, unixuser__enabled = True, unixuser__user__disable = True ).distinct(), } I don't know if the local server has the same issue, since I don't run that for more than a day. I'm using runcpserver management plugin to run it under cherrypy. http://lincolnloop.com/blog/2008/mar/25/serving-django-cherrypy/, and it's great (except for this :) Any help is appreciated. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---