Skip to content

Commit fd5c74e

Browse files
committed
Use %b instead of %h for datetime formatting. Fixes tobami#163
1 parent 1a810c2 commit fd5c74e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codespeed/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __unicode__(self):
9696
if self.date is None:
9797
date = None
9898
else:
99-
date = self.date.strftime("%h %d, %H:%M")
99+
date = self.date.strftime("%b %d, %H:%M")
100100
string = " - ".join(filter(None, (date, self.commitid, self.tag)))
101101
if self.branch.name != settings.DEF_BRANCH:
102102
string += " - " + self.branch.name

0 commit comments

Comments
 (0)