improve events reporting

This commit is contained in:
Jean-Paul Calderone 2019-02-26 15:09:48 -05:00
parent ebeeba456f
commit 9351e47ae6
1 changed files with 3 additions and 3 deletions

View File

@ -688,11 +688,11 @@ NOTIFIED = ActionType(
u"Magic-Folder received a notification of a local filesystem change for a certain path.", u"Magic-Folder received a notification of a local filesystem change for a certain path.",
) )
_EVENTS = Field.for_types( _EVENTS = Field(
u"events", u"events",
[int, long],
u"Details about a filesystem event generating a notification event.",
humanReadableMask, humanReadableMask,
u"Details about a filesystem event generating a notification event.",
eliotutil.validateInstanceOf((int, long)),
) )
_NON_DIR_CREATED = Field.for_types( _NON_DIR_CREATED = Field.for_types(