mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
fix the syntax error
This commit is contained in:
parent
fd2d365f1e
commit
26ba2e6bee
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ class CreateArnoldRop(plugin.HoudiniCreator):
|
|||
defaults = ["master"]
|
||||
|
||||
# Default extension
|
||||
ext = ".exr"
|
||||
ext = "exr"
|
||||
|
||||
def create(self, subset_name, instance_data, pre_create_data):
|
||||
import hou
|
||||
|
|
@ -41,7 +41,7 @@ class CreateArnoldRop(plugin.HoudiniCreator):
|
|||
|
||||
filepath = "{}{}".format(
|
||||
hou.text.expandString("$HIP/pyblish/"),
|
||||
"{}.$F4{}".format(subset_name, ext)
|
||||
"{}.$F4.{}".format(subset_name, ext)
|
||||
)
|
||||
parms = {
|
||||
# Render frame range
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue