Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95722c4

Browse files
committed
Use commit.authored_date for drawing the chart
1 parent 0d908c5 commit 95722c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

update_switcher_chart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
continue
2323
number = float(found.group(1))
2424
progress.append(number)
25-
dates.append(datetime.fromtimestamp(commit.committed_date))
25+
dates.append(datetime.fromtimestamp(commit.authored_date))
2626

2727
pyplot.plot_date(dates, progress)
2828
pyplot.ylim(ymin=0)

0 commit comments

Comments
 (0)