Skip to content

Commit 2713832

Browse files
committed
Change date formatting from just str() to isodate(), for better browser compatibility
1 parent fb23f8f commit 2713832

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)