Skip to content

Commit

Permalink
"_match" -> "_schedule_match_part" typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jesopo committed Dec 13, 2019
1 parent 8a963b5 commit f6273a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core_modules/cron.py
Original file line number Diff line number Diff line change
Expand Up @@ -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("*/"):
Expand Down

0 comments on commit f6273a5

Please sign in to comment.