mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Fix wrong variable
This commit is contained in:
parent
8347bad343
commit
1455ebb54e
1 changed files with 2 additions and 1 deletions
|
|
@ -805,7 +805,8 @@ def _create_instances_for_aov(
|
|||
if isinstance(collected_files, (list, tuple)):
|
||||
expected_filepath = os.path.join(staging_dir, collected_files[0])
|
||||
else:
|
||||
expected_filepath = os.path.join(staging_dir, expected_filepath)
|
||||
expected_filepath = os.path.join(staging_dir, collected_files)
|
||||
|
||||
|
||||
dynamic_data = {
|
||||
"aov": aov,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue