We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a37d63 commit 0e741eaCopy full SHA for 0e741ea
1 file changed
src/treemapper/diffctx/git.py
@@ -19,7 +19,8 @@ def run_git(repo_root: Path, args: list[str]) -> str:
19
result = subprocess.run(
20
["git", "-C", str(repo_root), *args],
21
capture_output=True,
22
- text=True,
+ encoding="utf-8",
23
+ errors="replace",
24
check=True,
25
)
26
return result.stdout
0 commit comments