Skip to content

Commit 57c5f17

Browse files
committed
Fetch commits for the whole month, including the 31st
1 parent 6dffc34 commit 57c5f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fetch_commits_for_month.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def fetch_and_parse_commits_for_month(year, month):
1313
:param year: year in yyyy format
1414
:param month: month in mm format
1515
"""
16-
for day in range(1, 31):
16+
for day in range(1, 32):
1717
for hour in range(0, 24):
1818
time = strftime("%H:%M:%S", gmtime())
1919
print(f"[{time}] Downloading commits for {year}-{month}-{day}-{hour}")

0 commit comments

Comments
 (0)