From 100d6c9fb539a841610c4d153d0fcb3155fa8d4a Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Tue, 21 Jul 2026 19:06:34 +0800 Subject: [PATCH] fix: correct 'Unkown' to 'Unknown' typo in error message --- watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher.py b/watcher.py index ef1d2da..5983d4f 100755 --- a/watcher.py +++ b/watcher.py @@ -391,6 +391,6 @@ def log(msg): elif 'debug' == args.command: daemon.run() else: - print("Unkown Command") + print("Unknown Command") sys.exit(2) sys.exit(0)