Skip to content

Commit

Permalink
fix date in HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
womullan committed Jun 7, 2024
1 parent 8e844d4 commit d8e64b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion milestones/celeb.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ def completed_or_previosdue(ms, comp_milestones):
if comp_milestones:
cm = find_comp(comp_milestones, ms.code)
if cm:
completed = f"{cm.fdue.strftime('%Y-%m-%d')}"
date = cm.fdue.strftime("%d-%b-%Y")
completed = f"{date}"
return completed


Expand Down

0 comments on commit d8e64b0

Please sign in to comment.