From 50d3b305d4a36386b31191849a6673d2ea288fe0 Mon Sep 17 00:00:00 2001 From: Krazer Date: Fri, 3 Jan 2025 09:01:34 -0600 Subject: [PATCH] make it a warning --- aider/repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/repo.py b/aider/repo.py index 463d3ccd8..de71c1603 100644 --- a/aider/repo.py +++ b/aider/repo.py @@ -292,7 +292,7 @@ class GitRepo: if blob.type == "blob": # blob is a file files.add(blob.path) except (IndexError,) + ANY_GIT_ERROR: - self.io.tool_output(f"GitRepo: read error skipping {blob.path}") + self.io.tool_warning(f"GitRepo: read error skipping {blob.path}") continue except StopIteration: break