mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
Add debug prints to blame.py
for better troubleshooting.
This commit is contained in:
parent
b533cfe2be
commit
0bf4b72a6e
1 changed files with 3 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue