fix: Add AttributeError to ANY_GIT_ERROR tuple

This commit is contained in:
Paul Gauthier 2025-01-07 09:45:53 -08:00 committed by Paul Gauthier (aider)
parent 1d672616be
commit b67a16e9af

View file

@ -26,6 +26,7 @@ ANY_GIT_ERROR += [
BufferError, BufferError,
TypeError, TypeError,
ValueError, ValueError,
AttributeError,
] ]
ANY_GIT_ERROR = tuple(ANY_GIT_ERROR) ANY_GIT_ERROR = tuple(ANY_GIT_ERROR)