I'm trying to use python-dateutil to create a rrule to schedule an event to run every day at exactly 6PM EST.
The current rrule I'm using is simply:
byhour:23;
this renders to 6PM during non-daylight savings time, but during daylight savings time it renders as 7PM.
How do I change this to take into account DST?
My server this is running on (Linux) is currently configured for EST and already takes into account DST, so it looks like python-dateutil ignores this and bases calculations on UTC.