diff --git a/VERSION b/VERSION index 02e87384..425e9d46 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.19.0-develop104 +1.19.0-develop105 diff --git a/modules/util.py b/modules/util.py index 80754039..994fea4f 100644 --- a/modules/util.py +++ b/modules/util.py @@ -604,7 +604,7 @@ def schedule_check(attribute, data, current_time, run_hour, is_all=False): param = match.group(1) if run_time.startswith("hour"): if "-" in run_time: - start, end = run_time.split("-") + start, end = param.split("-") try: start = int(start) end = int(end)