Skip to content

Commit f6273a5

Browse files
committed
"_match" -> "_schedule_match_part" typo
1 parent 8a963b5 commit f6273a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core_modules/cron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _schedule_match(self, timestamp, schedule):
3131
def _schedule_match_part(self, timestamp_part, schedule_part):
3232
if "," in schedule_part:
3333
for schedule_part in schedule_part.split(","):
34-
if self._match([timestamp_part], [schedule_part]):
34+
if self._schedule_match_part([timestamp_part], [schedule_part]):
3535
return True
3636

3737
elif schedule_part.startswith("*/"):

0 commit comments

Comments
 (0)