Skip to content

Commit

Permalink
fix: fix call to watchdog (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
Heiko Nickerl authored Aug 5, 2021
1 parent 71c1101 commit c260cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sodalite/core/entrywatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ def on_navigated(self, entry: Entry) -> None:
if self._observed_path == str(entry.path):
return
self._observer.unschedule_all()
self._observer.schedule(self._handler, entry.path, recursive=False)
self._observer.schedule(self._handler, str(entry.path), recursive=False)
self._observed_path = entry.path

0 comments on commit c260cab

Please sign in to comment.