Skip to content

Commit

Permalink
don't report inotify mask
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Sep 5, 2020
1 parent 54fe569 commit 2b8e323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kvmd/inotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def __init__(self) -> None:
def watch(self, path: str, mask: int) -> None:
path = os.path.normpath(path)
assert path not in self.__wd_by_path, path
get_logger().info("Watching for %s: %s", path, InotifyMask.to_string(mask))
get_logger().info("Watching for %s", path)
wd = _inotify_check(_inotify_add_watch(self.__fd, _fs_encode(path), mask))
self.__wd_by_path[path] = wd
self.__path_by_wd[wd] = path
Expand Down

0 comments on commit 2b8e323

Please sign in to comment.