fix: Add BufferError to ANY_GIT_ERROR tuple

This commit is contained in:
Paul Gauthier 2024-09-20 12:39:33 -07:00 committed by Paul Gauthier (aider)
parent 2a4527a5af
commit b3e5caf330

View file

@ -10,7 +10,7 @@ from aider.sendchat import simple_send_with_retries
from .dump import dump # noqa: F401
ANY_GIT_ERROR = (git.exc.ODBError, git.exc.GitError, OSError, IndexError)
ANY_GIT_ERROR = (git.exc.ODBError, git.exc.GitError, OSError, IndexError, BufferError)
class GitRepo: