From 284b7069ce3ce657f1f500a9d34120ff06df9895 Mon Sep 17 00:00:00 2001 From: Kayla Man Date: Wed, 12 Jul 2023 11:41:34 +0800 Subject: [PATCH] oscar's comment --- openpype/pipeline/delivery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/pipeline/delivery.py b/openpype/pipeline/delivery.py index 1bb19498da..bbd01f7a4e 100644 --- a/openpype/pipeline/delivery.py +++ b/openpype/pipeline/delivery.py @@ -296,7 +296,7 @@ def deliver_sequence( src_head = src_collection.head src_tail = src_collection.tail uploaded = 0 - first_frame = next(iter(src_collection.indexes)) + first_frame = min(src_collection.indexes) for index in src_collection.indexes: src_padding = src_collection.format("{padding}") % index src_file_name = "{}{}{}".format(src_head, src_padding, src_tail)