replaced {frame} with <<frame>>

This commit is contained in:
iLLiCiTiT 2020-01-08 17:41:35 +01:00
parent cbbb074a25
commit cfd9823abc

View file

@ -354,7 +354,7 @@ class Delivery(BaseAction):
# TODO log error!
return
anatomy_data["frame"] = "{frame}"
anatomy_data["frame"] = "<<frame>>"
anatomy_filled = anatomy.format(anatomy_data)
delivery_path = anatomy_filled.get("delivery", {}).get(anatomy_name)
if not delivery_path:
@ -362,7 +362,7 @@ class Delivery(BaseAction):
return
delivery_folder = os.path.dirname(delivery_path)
dst_head, dst_tail = delivery_path.split("{frame}")
dst_head, dst_tail = delivery_path.split("<<frame>>")
dst_padding = src_collection.padding
dst_collection = clique.Collection(
head=dst_head,