From 5fbae2983bdd43654ddc44c1b45384ecac6f3a0f Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Thu, 5 Nov 2020 13:00:02 +0100 Subject: [PATCH] fix typo --- pyinotifyd/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyinotifyd/__init__.py b/pyinotifyd/__init__.py index 4234def..b08fbe4 100755 --- a/pyinotifyd/__init__.py +++ b/pyinotifyd/__init__.py @@ -63,7 +63,7 @@ class Pyinotifyd: self._log.info("starting") if len(self._watches) == 0: - self._log.warning("no watches configured, the daemon will not do anything" + self._log.warning("no watches configured, the daemon will not do anything") for watch in self._watches: self._log.info(f"start watching '{watch.path}' for inotify events") self._notifiers.append(watch.event_notifier(self._wm, loop))