From af2f210e7c08d15919c6efc75a1b66d424ad3f2e Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Fri, 28 Feb 2025 11:00:27 +0100 Subject: [PATCH] Fix pattern for occurence of : --- client/ayon_core/pipeline/farm/pyblish_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/pipeline/farm/pyblish_functions.py b/client/ayon_core/pipeline/farm/pyblish_functions.py index c0285d0446..4795eaac47 100644 --- a/client/ayon_core/pipeline/farm/pyblish_functions.py +++ b/client/ayon_core/pipeline/farm/pyblish_functions.py @@ -486,7 +486,7 @@ def get_real_frames_to_render(frames): 1003-1005 1001-1100x5 """ - pattern = r"(?:|step|by|every|:?)(\d+)$" + pattern = r"(?:step|by|every|x|:)(\d+)$" frames_to_render = [] step = 1