Skip to content

Commit b476899

Browse files
committed
Merge pull request tobami#160 from staticfloat/isodate
Change date formatting from just str() to isodate()
2 parents fb23f8f + 2713832 commit b476899

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codespeed/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ def gettimelinedata(request):
437437
std_dev = res.std_dev
438438
results.append(
439439
[
440-
str(res.revision.date), res.value, std_dev,
440+
res.revision.date.isoformat(), res.value, std_dev,
441441
res.revision.get_short_commitid(), branch
442442
]
443443
)

0 commit comments

Comments
 (0)