From ac661ae43b078526f9ca9609454b0bc155389ef6 Mon Sep 17 00:00:00 2001 From: Xavier Chevalier Date: Fri, 15 Dec 2023 14:12:19 +0100 Subject: [PATCH] docs: fix typo --- wakerup/wakerup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wakerup/wakerup.py b/wakerup/wakerup.py index 179a6da..c8f5ad9 100644 --- a/wakerup/wakerup.py +++ b/wakerup/wakerup.py @@ -116,7 +116,7 @@ def is_awake(self, host): class WakeupEventHandler(PatternMatchingEventHandler): """Subclass of the Watchdog event handler - Keeps observing the directdory of the file specified for activity. Any file + Keeps observing the directory of the file specified for activity. Any file creation/modification/deletion/moves trigger an event handler, where the filename of the triggering event is checked for the file we care about. If it's a match, then we call back into the WakerUp class which handles the pattern matching of the @@ -172,4 +172,4 @@ def sigterm_handler(_signo, _stack_frame): # Set up signal handler for graceful docker quitting signal.signal(signal.SIGTERM, sigterm_handler) - wakerup = WakerUp(options['CONFIGFILE']) \ No newline at end of file + wakerup = WakerUp(options['CONFIGFILE'])