Skip to content

Commit

Permalink
Change Exit Code to 0 to indicate a success
Browse files Browse the repository at this point in the history
  • Loading branch information
nille02 committed Nov 10, 2024
1 parent 70ac588 commit c9ae55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/urlwatch/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit c9ae55e

Please sign in to comment.