Skip to content

Commit

Permalink
Make sure time is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadelange authored Dec 2, 2024
1 parent a03efa1 commit 4829a3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AoCH/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def return_day_data(members, total_members, today):

for key, value in members.items():
if str(this_day) in value["completion_day_level"]:
# Today +6 hours
time_started = datetime(year=this_year, month=12, day=this_day, hour=6)
# Today +6 hours (with timezone)
time_started = datetime(year=this_year, month=12, day=this_day, hour=5)

person = {
"name": value["name"],
Expand Down

0 comments on commit 4829a3a

Please sign in to comment.