Skip to content

Commit

Permalink
Fixing var (#3827)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgliss authored Oct 2, 2023
1 parent 5488b0b commit 62c3ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/case/scheduled.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def case_triage_reminder(db_session: SessionLocal, project: Project):

# if we want more specific SLA reminders, we would need to add additional data model
for case in cases:
span = datetime.utcnow() - case.created
span = datetime.utcnow() - case.created_at
q, r = divmod(span.days, 1)
if q >= 1:
# we only send one reminder per case per day
Expand Down

0 comments on commit 62c3ff3

Please sign in to comment.