From f2702cd6857b52befab4b4872d0fc7c7a733014d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 24 May 2024 10:15:46 -0700 Subject: [PATCH] ignore whitespace --- scripts/blame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/blame.py b/scripts/blame.py index e3c7bbb49..4f83c63e4 100755 --- a/scripts/blame.py +++ b/scripts/blame.py @@ -13,7 +13,7 @@ from aider.dump import dump def get_lines_with_commit_hash(filename, aider_commits, git_dname, verbose=False): result = subprocess.run( - ["git", "-C", git_dname, "blame", "-l", filename], + ["git", "-C", git_dname, "blame", "-w", "-l", filename], capture_output=True, text=True, check=True,