On Feb 2, 12:36 pm, Simon Westphahl <westph...@googlemail.com> wrote:
> After some further investigation it seems this problem is related to
> my custom manager.
>
> ###
> class OfferManager(models.Manager):
>     def get_query_set(self):
>         return super(OfferManager, self).get_query_set().exclude
> (start_date__gt=datetime.now).exclude(end_date__lt=datetime.now)
> ###
>
> I'm using a queryset filtered with a callable (datetime.now) which
> appears to be set only once/on load time?!
> Does anyone no a way to work around this?
>
> Regards,
> Simon

Should you actually be calling datetime.now, rather than passing a
callable?
eturn super(OfferManager, self).get_query_set().exclude
(start_date__gt=datetime.now()).exclude(end_date__lt=datetime.now())
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to