Changes between Initial Version and Version 1 of Ticket #29724, comment 9


Ignore:
Timestamp:
Sep 3, 2019, 1:17:53 PM (5 years ago)
Author:
yab

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29724, comment 9

    initial v1  
    3131###30749 (DST matter)
    3232If the month selected by date_hierarchy is the month of the DST, the objects of the last day of the month does not appear in the changelist.
    33 Changing the way "from_date" is set after ''elif month'' line 165 solves my problem: Instead of just adding 32 days with timedelta, I use make_aware with tzinfo=None. That way the to_date is set to the correct date and time.
     33Changing the way "to_date" is set after ''elif month'' line 165 solves my problem: Instead of just adding 32 days with timedelta, I use make_aware with tzinfo=None. That way the to_date is set to the correct date and time.
    3434{{{
    3535                                elif month:
Back to Top