aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2019-12-13 17:16:02 +0000
committerGravatar jesopo2019-12-13 17:16:02 +0000
commitf6273a5a671d5dba994944e55619ec7ec1107a3c (patch)
tree0b723272dcb7b38dbc04d3436c39520328204a2d /src
parentcron events no longer have timers (diff)
signature
"_match" -> "_schedule_match_part" typo
Diffstat (limited to 'src')
-rw-r--r--src/core_modules/cron.py2
1 files changed, 1 insertions, 1 deletions
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 @@ class Module(ModuleManager.BaseModule):
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("*/"):