Skip to content

Commit 6d588b5

Browse files
committed
Timezone issue described in #593
1 parent 8a734ff commit 6d588b5

File tree

1 file changed

+2
-2
lines changed
  • changehc/delphi_changehc

1 file changed

+2
-2
lines changed

changehc/delphi_changehc/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ def run_module():
8585
make_asserts(params)
8686

8787
if params["drop_date"] is None:
88-
# files are dropped about 8pm the day after the issue date
89-
dropdate_dt = (datetime.now() - timedelta(days=1,hours=20))
88+
# files are dropped about 4pm the day after the issue date
89+
dropdate_dt = (datetime.now() - timedelta(days=1,hours=16))
9090
dropdate_dt = dropdate_dt.replace(hour=0,minute=0,second=0,microsecond=0)
9191
else:
9292
dropdate_dt = datetime.strptime(params["drop_date"], "%Y-%m-%d")

0 commit comments

Comments
 (0)