From 0bf4b72a6e7badebff08f9b0e4415e0996408df9 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 24 May 2024 08:21:26 -0700 Subject: [PATCH] Add debug prints to `blame.py` for better troubleshooting. --- scripts/blame.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/blame.py b/scripts/blame.py index 42088f6ae..54c640b21 100755 --- a/scripts/blame.py +++ b/scripts/blame.py @@ -12,9 +12,12 @@ def get_aider_commits(): ) commits = [] for line in result.stdout.splitlines(): + print(line) commit_hash, commit_message = line.split(" ", 1) if commit_message.startswith("aider:"): commits.append(commit_hash) + + dump(commits) return commits def get_blame_lines(commit_hash):