"_match" -> "_schedule_match_part" typo

This commit is contained in:
jesopo 2019-12-13 17:16:02 +00:00
parent 8a963b5288
commit f6273a5a67

View file

@ -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("*/"):