Skip to content

Commit b248587

Browse files
committedMay 3, 2024·
Fix CheckoutNotify.IGNORED
Fixes #1288
1 parent 00b04be commit b248587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pygit2/enums.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class CheckoutNotify(IntFlag):
137137
UNTRACKED = C.GIT_CHECKOUT_NOTIFY_UNTRACKED
138138
'Notifies about untracked files.'
139139

140-
IGNORED = C.GIT_CHECKOUT_NOTIFY_UNTRACKED
140+
IGNORED = C.GIT_CHECKOUT_NOTIFY_IGNORED
141141
'Notifies about ignored files.'
142142

143143
ALL = C.GIT_CHECKOUT_NOTIFY_ALL

0 commit comments

Comments
 (0)
Please sign in to comment.