django-persistent-messages icon indicating copy to clipboard operation
django-persistent-messages copied to clipboard

django 1.4 USE_TZ compat

Open dwheaton opened this issue 12 years ago • 0 comments

Ran into trouble running django 1.4 with USE_TZ=True

File "...\persistent_messages\storage.py" in _message_queryset

  1.     qs = Message.objects.filter(user=get_user(self.request)).filter(Q(expires=None) | Q(expires__gt=datetime.datetime.now()))
    

Simple enough fix so as time permits I will test a backwards-compatible fix.

dwheaton avatar Apr 23 '12 01:04 dwheaton