Skip to content

Commit

Permalink
Fix incorrect call to get_template from app
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximumFX committed Oct 2, 2023
1 parent 5e3c7fa commit ceecd6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tk_houdini_renderman/handler.py
Expand Up @@ -180,8 +180,8 @@ def get_output_path(self, node: hou.Node, aov_name: str, network="rop") -> str:
"""
current_filepath = hou.hipFile.path()

work_template = self.get_template("work_file_template")
render_template = self.get_template("output_render_template")
work_template = self.app.get_template("work_file_template")
render_template = self.app.get_template("output_render_template")

resolution_x_field = "resolutionx"
resolution_y_field = "resolutiony"
Expand Down

0 comments on commit ceecd6f

Please sign in to comment.