From c9ae55eb124470d40c4d6e498d7bbf082b20d750 Mon Sep 17 00:00:00 2001 From: nille02 Date: Sun, 10 Nov 2024 15:59:48 +0100 Subject: [PATCH] Change Exit Code to 0 to indicate a success --- lib/urlwatch/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/urlwatch/command.py b/lib/urlwatch/command.py index df24180d..eba8939d 100644 --- a/lib/urlwatch/command.py +++ b/lib/urlwatch/command.py @@ -153,7 +153,7 @@ def run_new_jobs(self): if len(new_jobs) != 0: self.urlwatch_config.idx_set = frozenset(int(s) for s in new_jobs) else: - return 1 + return 0 self.urlwatcher.run_jobs() self.urlwatcher.close()