From 6ef578f3a3cc53d83971c1290c8b250d6d91bacb Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Thu, 26 Oct 2023 10:40:16 +0100 Subject: [PATCH] Update cylc/flow/task_proxy.py Co-authored-by: Oliver Sanders --- cylc/flow/task_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cylc/flow/task_proxy.py b/cylc/flow/task_proxy.py index b86f833d94e..f26b3727a27 100644 --- a/cylc/flow/task_proxy.py +++ b/cylc/flow/task_proxy.py @@ -378,7 +378,7 @@ def get_clock_trigger_time( not self.clock_trigger_times or offset_str not in self.clock_trigger_times ): - if offset_str == 'no-offset': + if offset_str == 'P0Y': trigger_time = point else: trigger_time = point + ISO8601Interval(offset_str)