make it a warning

This commit is contained in:
Krazer 2025-01-03 09:01:34 -06:00
parent a341c98ec6
commit 50d3b305d4

View file

@ -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