From 064029ccfe6e40d27d972ca50253d9261a99e3cb Mon Sep 17 00:00:00 2001 From: MustafaJafar Date: Mon, 22 Apr 2024 16:00:02 +0200 Subject: [PATCH] remove redundant `/` in filepath --- .../hosts/houdini/plugins/create/create_alembic_camera.py | 2 +- .../ayon_core/hosts/houdini/plugins/create/create_pointcache.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py b/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py index 60025ff3c0..95afa77249 100644 --- a/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py +++ b/client/ayon_core/hosts/houdini/plugins/create/create_alembic_camera.py @@ -28,7 +28,7 @@ class CreateAlembicCamera(plugin.HoudiniCreator): instance_node = hou.node(instance.get("instance_node")) filepath = "{staging_dir}/{product_name}.abc".format( - staging_dir=hou.text.expandString("$HIP/pyblish/"), + staging_dir=hou.text.expandString("$HIP/pyblish"), # keep dynamic link to product name product_name="`chs(\"AYON_productName\")`", ) diff --git a/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py b/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py index e3dab9ed41..2913f3cdbf 100644 --- a/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py +++ b/client/ayon_core/hosts/houdini/plugins/create/create_pointcache.py @@ -29,7 +29,7 @@ class CreatePointCache(plugin.HoudiniCreator): instance_node = hou.node(instance.get("instance_node")) filepath = "{staging_dir}/{product_name}.abc".format( - staging_dir=hou.text.expandString("$HIP/pyblish/"), + staging_dir=hou.text.expandString("$HIP/pyblish"), # keep dynamic link to product name product_name="`chs(\"AYON_productName\")`", )