diff --git a/pype/ftrack/actions/action_delivery.py b/pype/ftrack/actions/action_delivery.py
index ad3d6ef6cc..22fb15198b 100644
--- a/pype/ftrack/actions/action_delivery.py
+++ b/pype/ftrack/actions/action_delivery.py
@@ -354,7 +354,7 @@ class Delivery(BaseAction):
# TODO log error!
return
- anatomy_data["frame"] = "{frame}"
+ anatomy_data["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("<>")
dst_padding = src_collection.padding
dst_collection = clique.Collection(
head=dst_head,