Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Mar 14, 2022
1 parent bd12428 commit 763a7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emborg/overdue.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def send_mail(recipient, subject, message):
delta = now - mtime
age = 24 * delta.days + delta.seconds / 3600
report = age > max_age
overdue = ' -- overdue' if report else ''
overdue = ' overdue' if report else ''
color = fails if report else passes
if report or not cmdline["--no-passes"]:
display(color(fmt(overdue_message)))
Expand Down

0 comments on commit 763a7b2

Please sign in to comment.