Skip to content

Commit

Permalink
Merge pull request #524 from BigRoy/bugfix/houdini_validate_workfile_…
Browse files Browse the repository at this point in the history
…paths_keyframes

Houdini: Fix Validate Workfile Paths failing on parms with expressions or keyframes
  • Loading branch information
iLLiCiTiT authored Jun 18, 2024
2 parents 77f4573 + 3ee74b9 commit c3ccae7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ def get_invalid(cls):
if param.node().type().name() not in cls.node_types:
continue

if param.keyframes():
# Calling `.unexpandedString()` below fails if param has
# keyframes - so for now we will skip those params. These are
# e.g. present in `filecache` nodes.
continue

if any(
v for v in cls.prohibited_vars
if v in param.unexpandedString()):
Expand Down
2 changes: 1 addition & 1 deletion server_addon/houdini/client/ayon_houdini/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'houdini' version."""
__version__ = "0.3.1"
__version__ = "0.3.2"
2 changes: 1 addition & 1 deletion server_addon/houdini/package.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "houdini"
title = "Houdini"
version = "0.3.1"
version = "0.3.2"

client_dir = "ayon_houdini"

Expand Down

0 comments on commit c3ccae7

Please sign in to comment.