Skip to content

Commit 3120c69

Browse files
authored
Merge pull request #43 from diegorusso/speed.python.org
Show full date/time in the revision admin view
2 parents a3ca362 + be45e4b commit 3120c69

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
@@ -144,7 +144,7 @@ def __str__(self):
144144
if self.date is None:
145145
date = None
146146
else:
147-
date = self.date.strftime("%b %d, %H:%M")
147+
date = self.date.isoformat(sep=" ")
148148
string = " - ".join(filter(None, (date, self.commitid, self.tag)))
149149
if self.branch.name != self.branch.project.default_branch:
150150
string += " - " + self.branch.name

0 commit comments

Comments
 (0)