Skip to content

Commit

Permalink
[mac] Fix missing event_id attribute in fsevents (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSchott committed Dec 10, 2020
1 parent 4fbca6e commit d0bb7b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion changelog.rst
Expand Up @@ -8,7 +8,8 @@ Changelog

202x-xx-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v1.0.1...master>`__

- Thanks to our beloved contributors:
- [mac] Fix missing ``event_id`` attribute in ``fsevents`` (`#721 <https://github.com/gorakhargosh/watchdog/pull/721>`_)
- Thanks to our beloved contributors: @SamSchott


1.0.1
Expand Down
2 changes: 1 addition & 1 deletion src/watchdog_fsevents.c
Expand Up @@ -174,7 +174,7 @@ static PyGetSetDef NativeEventProperties[] = {
{"_event_type", NativeEventTypeString, NULL, "Textual representation of the native event that occurred", NULL},
{"flags", NativeEventTypeFlags, NULL, "The raw mask of flags as returend by FSEvents", NULL},
{"path", NativeEventTypePath, NULL, "The path for which this event was generated", NULL},
{"id", NativeEventTypeID, NULL, "The id of the generated event", NULL},
{"event_id", NativeEventTypeID, NULL, "The id of the generated event", NULL},
{"must_scan_subdirs", NativeEventTypeIsMustScanSubDirs, NULL, "True if application must rescan all subdirectories", NULL},
{"is_user_dropped", NativeEventTypeIsUserDropped, NULL, "True if a failure during event buffering occured", NULL},
{"is_kernel_dropped", NativeEventTypeIsKernelDropped, NULL, "True if a failure during event buffering occured", NULL},
Expand Down

0 comments on commit d0bb7b8

Please sign in to comment.