- Notifications
You must be signed in to change notification settings - Fork445
Closed as not planned
Description
Details
Here is where it occurs:
else: raise # get latest commit date commit_date = datetime.datetime.now(datetime.timezone.utc) - datetime.timedelta(days=30) for commit in commits: <- here if commit.commit.author.date > commit_date: commit_date = commit.commit.author.date # since_date = datetime.datetime.now() - datetime.timedelta(days=30) # commits = repo.get_commits(since=since_date, author="lukejagg")