Skip to content

Commit

Permalink
Merge branch 'develop' into enhancement/use_opengl_family_instead_of_…
Browse files Browse the repository at this point in the history
…review
  • Loading branch information
BigRoy authored Nov 13, 2024
2 parents cdb9548 + 11f5140 commit c5371ce
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions client/ayon_houdini/api/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,12 @@ def open_workfile(self, filepath):
# Force forwards slashes to avoid segfault
filepath = filepath.replace("\\", "/")

hou.hipFile.load(filepath,
suppress_save_prompt=True,
ignore_load_warnings=False)
try:
hou.hipFile.load(filepath,
suppress_save_prompt=True,
ignore_load_warnings=False)
except hou.LoadWarning as exc:
log.warning(exc)

return filepath

Expand Down

0 comments on commit c5371ce

Please sign in to comment.