mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix orderdict
This commit is contained in:
parent
16e8407332
commit
7a40cc2692
1 changed files with 2 additions and 2 deletions
|
|
@ -300,7 +300,7 @@ class IntegrateBatchGroup(pyblish.api.InstancePlugin):
|
|||
version_padding = 3
|
||||
|
||||
# need to make sure the order of keys is correct
|
||||
return OrderedDict(
|
||||
return OrderedDict((
|
||||
("name", name),
|
||||
("media_path", media_path),
|
||||
("media_path_pattern", media_path_pattern),
|
||||
|
|
@ -318,7 +318,7 @@ class IntegrateBatchGroup(pyblish.api.InstancePlugin):
|
|||
("version_mode", version_mode),
|
||||
("version_name", version_name),
|
||||
("version_padding", version_padding)
|
||||
)
|
||||
))
|
||||
|
||||
def _get_shot_task_dir_path(self, instance, task_data):
|
||||
project_doc = instance.data["projectEntity"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue