Skip to content

Commit

Permalink
Merge branch 'develop' into bugfix/load_comp_image_colorspace
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy authored Nov 12, 2024
2 parents 2fb2300 + 3946503 commit 1bd4fe6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions client/ayon_blender/api/render_lib.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
from pathlib import Path

import bpy
Expand Down Expand Up @@ -77,9 +78,7 @@ def get_render_product(output_path, name, aov_sep):
"""
filepath = output_path / name.lstrip("/")
render_product = f"{filepath}{aov_sep}beauty.####"
render_product = render_product.replace("\\", "/")

return render_product
return os.path.normpath(render_product)


def set_render_format(ext, multilayer):
Expand Down

0 comments on commit 1bd4fe6

Please sign in to comment.