_schedule_match_part takes an i
param
This commit is contained in:
parent
5b1dae1502
commit
d7285360ff
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
def _schedule_match_part(self, i, timestamp_part, schedule_part):
|
def _schedule_match_part(self, i, timestamp_part, schedule_part):
|
||||||
if "," in schedule_part:
|
if "," in schedule_part:
|
||||||
for schedule_part in schedule_part.split(","):
|
for schedule_part in schedule_part.split(","):
|
||||||
if self._schedule_match_part([timestamp_part], [schedule_part]):
|
if self._schedule_match_part(
|
||||||
|
i, [timestamp_part], [schedule_part]):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
elif "/" in schedule_part:
|
elif "/" in schedule_part:
|
||||||
|
|
Loading…
Reference in a new issue