Alex Recker
Alex Recker
I was wondering if this was an issue. I think I have an idea for how to fix it. I'm going to attempt it in a VM. Thanks for your...
Ah. Awesome. That means we're getting closer. On Mon, Feb 8, 2016 at 2:46 AM, insajd [email protected] wrote: > I mentioned that cron for my user worked at 2 AM,...
@rainforest1155 The timezone-refactor branch is definitely not ready yet. If anything use master. I have a working theory about the date filters. I think it is only an issue when...
Thanks for the screenshots.
Well this is hilarious ``` python class TimeZoneDateTimeField(serializers.DateTimeField): def to_native(self, value): value = timezone.localtime(value) return super(TimeZoneDateTimeField, self).to_native(value) ``` I put a breakpoint inside `to_native` and found that it was _never_...
Wrote a real TimeZoneDateTimeField serializer field and added a no-bullshit conversion to the queryset method. I'm more confident this is fixed. Try again.
Thanks for checking that. > Is this because those records were created > when bug was not yet fixed? That is probably true. Up until this point, my serializer field...