From f6273a5a671d5dba994944e55619ec7ec1107a3c Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 13 Dec 2019 17:16:02 +0000 Subject: [PATCH] "_match" -> "_schedule_match_part" typo --- src/core_modules/cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core_modules/cron.py b/src/core_modules/cron.py index a1078b28..fa6b15a3 100644 --- a/src/core_modules/cron.py +++ b/src/core_modules/cron.py @@ -31,7 +31,7 @@ def _schedule_match(self, timestamp, schedule): def _schedule_match_part(self, timestamp_part, schedule_part): if "," in schedule_part: for schedule_part in schedule_part.split(","): - if self._match([timestamp_part], [schedule_part]): + if self._schedule_match_part([timestamp_part], [schedule_part]): return True elif schedule_part.startswith("*/"):