From 0bdc2bd29d80e0d49ed50bf06b2989f50604d770 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Fri, 28 Feb 2025 10:40:30 +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 5776e42ff6..c0285d0446 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'(?:x|step|by|every)?(\d+)$' + pattern = r"(?:|step|by|every|:?)(\d+)$" frames_to_render = [] step = 1