mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Fix against local variable issues
This commit is contained in:
parent
1455ebb54e
commit
07674c3040
1 changed files with 2 additions and 2 deletions
|
|
@ -863,7 +863,7 @@ def _create_instances_for_aov(
|
|||
)
|
||||
|
||||
try:
|
||||
staging = remap_source(staging_dir, anatomy)
|
||||
staging_dir = remap_source(staging_dir, anatomy)
|
||||
except ValueError as e:
|
||||
log.warning(e)
|
||||
|
||||
|
|
@ -931,7 +931,7 @@ def _create_instances_for_aov(
|
|||
"frameStart": frames_to_render[0],
|
||||
"frameEnd": frames_to_render[-1],
|
||||
# If expectedFile are absolute, we need only filenames
|
||||
"stagingDir": staging,
|
||||
"stagingDir": staging_dir,
|
||||
"fps": new_instance.get("fps"),
|
||||
"tags": ["review"] if preview else [],
|
||||
"colorspaceData": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue