Skip to content

Commit

Permalink
Fix CheckoutNotify.IGNORED
Browse files Browse the repository at this point in the history
Fixes #1288
  • Loading branch information
jdavid committed May 3, 2024
1 parent 00b04be commit b248587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygit2/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class CheckoutNotify(IntFlag):
UNTRACKED = C.GIT_CHECKOUT_NOTIFY_UNTRACKED
'Notifies about untracked files.'

IGNORED = C.GIT_CHECKOUT_NOTIFY_UNTRACKED
IGNORED = C.GIT_CHECKOUT_NOTIFY_IGNORED
'Notifies about ignored files.'

ALL = C.GIT_CHECKOUT_NOTIFY_ALL
Expand Down

0 comments on commit b248587

Please sign in to comment.