mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
use more decriptive variable name
This commit is contained in:
parent
693284ae6f
commit
2372e552d3
1 changed files with 3 additions and 3 deletions
|
|
@ -21,11 +21,11 @@ class ExtractFBX(publish.Extractor):
|
|||
|
||||
# get rop node
|
||||
ropnode = hou.node(instance.data.get("instance_node"))
|
||||
output_node = ropnode.evalParm("sopoutput")
|
||||
output_file = ropnode.evalParm("sopoutput")
|
||||
|
||||
# get staging_dir and file_name
|
||||
staging_dir = os.path.normpath(os.path.dirname(output_node))
|
||||
file_name = os.path.basename(output_node)
|
||||
staging_dir = os.path.normpath(os.path.dirname(output_file))
|
||||
file_name = os.path.basename(output_file)
|
||||
|
||||
# render rop
|
||||
self.log.debug("Writing FBX '%s' to '%s'", file_name, staging_dir)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue