From e8f7434d52ef6bf44241e596ed6a691955e44799 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Sat, 23 Jan 2021 02:23:18 -0500 Subject: [PATCH] allows daily to be specified --- modules/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/config.py b/modules/config.py index 317aa11b..2b5ce9c7 100644 --- a/modules/config.py +++ b/modules/config.py @@ -422,6 +422,9 @@ class Config: last_day = next_month - timedelta(days=next_month.day) for schedule in schedule_list: run_time = str(schedule).lower() + if run_time.startswith("day") or run_time.startswith("daily"): + skip_collection = False + break if run_time.startswith("week") or run_time.startswith("month") or run_time.startswith("year"): match = re.search("\\(([^)]+)\\)", run_time) if match: