Skip to content

Commit

Permalink
Fixed type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamphues committed Aug 29, 2020
1 parent 0484ae8 commit 328af0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hooks/tk-houdini_scene_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def scan_scene(self):
alembic_nodes = hou.nodeType(hou.sopNodeTypeCategory(), "alembic").instances()

# get a list of all regular file nodes in the file
file_nodes = hou.nodeType(hou.sopNodeTypeCategory, "file").instances()
file_nodes = hou.nodeType(hou.sopNodeTypeCategory(), "file").instances()

# return an item for each alembic node found. the breakdown app will check
# the paths of each looking for a template match and a newer version
Expand Down Expand Up @@ -114,6 +114,6 @@ def update(self, items):

file_node = hou.node(node_path)
engine.log_debug(
"Updating file node '%s' to: %s" (node_path, file_path)
"Updating file node '%s' to: %s" % (node_path, file_path)
)
file_node.parm("file").set(file_path)

0 comments on commit 328af0a

Please sign in to comment.