Skip to content

Commit abc817f

Browse files
authored
Merge pull request #46 from mattip/speed.pypy.org
Show full date/time in the revision admin view
2 parents 1eff5d1 + ac68f9b commit abc817f

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
@@ -139,7 +139,7 @@ def __str__(self):
139139
if self.date is None:
140140
date = None
141141
else:
142-
date = self.date.strftime("%b %d, %H:%M")
142+
date = self.date.isoformat(sep=" ")
143143
string = " - ".join(filter(None, (date, self.commitid, self.tag)))
144144
if self.branch.name != self.branch.project.default_branch:
145145
string += " - " + self.branch.name

0 commit comments

Comments
 (0)