From da430557f3ea9af704c3a3654a30edc6fb457a30 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 24 Oct 2025 09:36:07 -0700 Subject: [PATCH] Update filemon.py --- modules/filemon.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/filemon.py b/modules/filemon.py index 66a3ae1..07c2da9 100644 --- a/modules/filemon.py +++ b/modules/filemon.py @@ -178,6 +178,9 @@ def initNewsSources(): if file.endswith('_news.txt'): source = file[:-9] # remove _news.txt newsSourcesList.append(source) + return True + logger.info("FileMon: No news sources found") + return False #initialize the headlines on startup initNewsSources()