Adopt safe_abs_path

This commit is contained in:
Paul Gauthier 2023-07-07 17:19:32 -07:00
parent 2c32fe5eb8
commit 1c1411b506
3 changed files with 3 additions and 8 deletions

View file

@ -1,5 +1,3 @@
import os
from aider import diffs
from ..dump import dump # noqa: F401
@ -99,7 +97,7 @@ class WholeFileFunctionCoder(Coder):
lines = content.splitlines(keepends=True)
# ending an existing block
full_path = os.path.abspath(os.path.join(self.root, fname))
full_path = self.abs_root_path(fname)
content = self.io.read_text(full_path)
if content is None: